From 21874afb872a6bef69e2034d93e4dbc6fedcd74f Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sat, 29 Nov 2025 23:20:27 +0100 Subject: [PATCH 1/4] Downgrade sol2 and force windows ver to 10 --- CMakeLists.txt | 3 ++- vcpkg.json | 9 ++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 71fe053..67e758d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,7 +148,8 @@ if(UNIX) endif(UNIX) if (WIN32) - add_compile_options("-D_WIN32_WINNT=0x0601") + add_compile_definitions(_WIN32_WINNT=0x0A00) + add_compile_options("/bigobj") endif(WIN32) diff --git a/vcpkg.json b/vcpkg.json index cc7e74f..3809482 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -15,5 +15,12 @@ "rapidjson", "sol2", "curl" - ] + ], + "overrides": [ + { + "name": "sol2", + "version": "3.3.1" + } + ], + "builtin-baseline": "5bf0c55239da398b8c6f450818c9e28d36bf9966" } From eb2deb73c1c1d5c974ab35882de4df28f7ff54cd Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sat, 29 Nov 2025 23:23:36 +0100 Subject: [PATCH 2/4] Update vcpkg --- vcpkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcpkg b/vcpkg index 6353ece..5bf0c55 160000 --- a/vcpkg +++ b/vcpkg @@ -1 +1 @@ -Subproject commit 6353ece09f6cebc34413ea04e69beab3fece73c2 +Subproject commit 5bf0c55239da398b8c6f450818c9e28d36bf9966 From 372076a4effdd298ee82bd6700e772b40cd1a7e1 Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sat, 29 Nov 2025 23:30:39 +0100 Subject: [PATCH 3/4] Set fetch-depth to 0 --- .github/workflows/linux.yml | 2 ++ .github/workflows/release.yml | 3 +++ .github/workflows/windows.yml | 1 + 3 files changed, 6 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b97d5c0..8d16b12 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -48,6 +48,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash @@ -119,6 +120,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f3833e..71454a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,6 +67,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash @@ -141,6 +142,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash @@ -194,6 +196,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Create Build Environment shell: bash diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 343aed3..cdadc87 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -26,6 +26,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Setup vcpkg uses: lukka/run-vcpkg@v11 From add45c085bfa2eb1257ec4d813b20b7abc711a17 Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:04:38 +0100 Subject: [PATCH 4/4] Remove debian 11 --- .github/workflows/linux.yml | 4 ---- .github/workflows/release.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8d16b12..1b28310 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -19,8 +19,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu @@ -91,8 +89,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71454a8..ff401e2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,8 +38,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu @@ -110,8 +108,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu