From 0eef32c2f2d18931006c972201ef810d54816585 Mon Sep 17 00:00:00 2001 From: Rigidity Date: Wed, 1 Jul 2026 23:32:39 -0400 Subject: [PATCH 1/3] Test --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d82cb8b55..64d3f5692 100644 --- a/README.md +++ b/README.md @@ -126,3 +126,5 @@ The following things have to be done before a new release is published: 6. Upload to TestFlight and the Google Play Store 7. Generate the OpenAPI specification `cargo run --bin sage rpc generate_openapi -o dist/openapi.json` 8. Upload to docusaurus + +Test From 9b57a11deff5ca7d749989b96b965cf6c7e9dcfa Mon Sep 17 00:00:00 2001 From: Rigidity Date: Fri, 3 Jul 2026 17:18:05 -0400 Subject: [PATCH 2/3] Fix Windows CI C standard flags Co-authored-by: Cursor --- .github/workflows/build.yml | 2 ++ README.md | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16b8f5ae8..c18b82251 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -118,6 +118,8 @@ jobs: run: | choco install nasm echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + "CFLAGS_x86_64_pc_windows_msvc=/std:c11" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append + "CFLAGS_aarch64_pc_windows_msvc=/std:c11" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Install Android NDK uses: nttld/setup-ndk@v1 diff --git a/README.md b/README.md index 64d3f5692..d82cb8b55 100644 --- a/README.md +++ b/README.md @@ -126,5 +126,3 @@ The following things have to be done before a new release is published: 6. Upload to TestFlight and the Google Play Store 7. Generate the OpenAPI specification `cargo run --bin sage rpc generate_openapi -o dist/openapi.json` 8. Upload to docusaurus - -Test From 1e07c312058aa04c72e6ea952319ec4a47e48ccd Mon Sep 17 00:00:00 2001 From: Rigidity Date: Fri, 3 Jul 2026 17:28:17 -0400 Subject: [PATCH 3/3] Pin Windows CI runner to 2022 Co-authored-by: Cursor --- .github/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c18b82251..cea2b5c59 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,10 +68,10 @@ jobs: - platform: 'linux-arm64' platform_name: Linux (ARM) build: 'pnpm tauri build --target aarch64-unknown-linux-gnu' - - platform: 'windows-latest' + - platform: 'windows-2022' platform_name: Windows (x64) build: 'pnpm tauri build' - - platform: 'windows-latest' + - platform: 'windows-2022' platform_name: Windows (ARM) build: 'pnpm tauri build --target aarch64-pc-windows-msvc' - platform: 'macos-26' @@ -114,12 +114,10 @@ jobs: run: sudo apt-get install --reinstall xdg-utils - name: Windows dependencies - if: matrix.platform == 'windows-latest' + if: startsWith(matrix.platform, 'windows-') run: | choco install nasm echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - "CFLAGS_x86_64_pc_windows_msvc=/std:c11" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - "CFLAGS_aarch64_pc_windows_msvc=/std:c11" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Install Android NDK uses: nttld/setup-ndk@v1