Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update the helper script, for getting the most recent sqlite-amalgamation-3380200.zip #21474

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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