From 81ab569b6dfd2ac119d919823988d200ef2d76cc Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 8 May 2024 17:46:31 +0300 Subject: [PATCH] ci: update the helper script, for getting the most recent sqlite-amalgamation-3380200.zip --- .github/workflows/windows-install-sqlite.bat | 8 ++++---- .github/workflows/windows_ci.yml | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows-install-sqlite.bat b/.github/workflows/windows-install-sqlite.bat index 31fa9ed731b5c3..06c26fee139955 100644 --- a/.github/workflows/windows-install-sqlite.bat +++ b/.github/workflows/windows-install-sqlite.bat @@ -1,11 +1,11 @@ @echo off -curl -L https://www.sqlite.org/2022/sqlite-amalgamation-3380200.zip -o sqlite-amalgamation-3380200.zip +curl -L https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip -o sqlite-amalgamation-3450300.zip -unzip sqlite-amalgamation-3380200.zip -d thirdparty\ +unzip sqlite-amalgamation-3450300.zip -d thirdparty\ -del thirdparty\sqlite-amalgamation-3380200\shell.c +del thirdparty\sqlite-amalgamation-3450300\shell.c -move /y thirdparty\sqlite-amalgamation-3380200 thirdparty\sqlite +move /y thirdparty\sqlite-amalgamation-3450300 thirdparty\sqlite dir thirdparty\sqlite diff --git a/.github/workflows/windows_ci.yml b/.github/workflows/windows_ci.yml index 5af4b3ad238af8..eb8a2a6eb971d2 100644 --- a/.github/workflows/windows_ci.yml +++ b/.github/workflows/windows_ci.yml @@ -5,6 +5,7 @@ on: paths-ignore: - '**.md' - '**.yml' + - '!**.bat' - '!**/windows_ci.yml' - 'cmd/tools/**' - '!cmd/tools/builders/**.v' @@ -12,7 +13,9 @@ on: paths-ignore: - '**.md' - '**.yml' + - '!**.bat' - '!**/windows_ci.yml' + - '!**/windows-install-sqlite.bat' - 'cmd/tools/**' - '!cmd/tools/builders/**.v'