Windows build: Update cjson and sqlite versions

This commit is contained in:
Roger A. Light
2024-01-31 17:14:08 +00:00
parent ef1573592f
commit 6e7784f096

View File

@@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: DaveGamble/cJSON
ref: v1.7.16
ref: v1.7.17
- name: Configure CMake cJSON
run: cmake -B ${{github.workspace}}/build64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_CJSON_TEST=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_SHARED_AND_STATIC_LIBS=OFF -DCJSON_BUILD_SHARED_LIBS=OFF -DCJSON_OVERRIDE_BUILD_SHARED_LIBS=OFF -DCMAKE_GENERATOR_PLATFORM=x64
@@ -44,21 +44,21 @@ jobs:
id: sqlitesrc
name: Download sqlite source
with:
url: https://www.sqlite.org/2023/sqlite-amalgamation-3440000.zip
url: https://sqlite.org/2024/sqlite-amalgamation-3450100.zip
target: download/
- uses: suisei-cn/actions-download-file@v1.6.0
id: sqlitebin
name: Download sqlite dll
with:
url: https://www.sqlite.org/2023/sqlite-dll-win-x64-3440000.zip
url: https://www.sqlite.org/2024/sqlite-dll-win-x64-3450100.zip
target: download/
- name: extract src
run: 7z e -o"C:\Program Files\sqlite" download\sqlite-amalgamation-3440000.zip
run: 7z e -o"C:\Program Files\sqlite" download\sqlite-amalgamation-3450100.zip
- name: extract binary
run: 7z e -o"C:\Program Files\sqlite" download\sqlite-dll-win-x64-3440000.zip
run: 7z e -o"C:\Program Files\sqlite" download\sqlite-dll-win-x64-3450100.zip
- name: Set up Visual Studio shell
uses: egor-tensin/vs-shell@v2