Skip to content

Commit

Permalink
ci: update the helper script, for getting the most recent sqlite-amal…
Browse files Browse the repository at this point in the history
…gamation-3380200.zip (#21474)
  • Loading branch information
spytheman committed May 8, 2024
1 parent 152cd1c commit 0c6c1f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/windows-install-sqlite.bat
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions .github/workflows/windows_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ on:
paths-ignore:
- '**.md'
- '**.yml'
- '!**.bat'
- '!**/windows_ci.yml'
- 'cmd/tools/**'
- '!cmd/tools/builders/**.v'
pull_request:
paths-ignore:
- '**.md'
- '**.yml'
- '!**.bat'
- '!**/windows_ci.yml'
- '!**/windows-install-sqlite.bat'
- 'cmd/tools/**'
- '!cmd/tools/builders/**.v'

Expand Down

0 comments on commit 0c6c1f3

Please sign in to comment.