Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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