From e161c4d0a70cecb9252d7f1be5fb8867c5abbb9c Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Thu, 23 Jan 2025 00:06:00 +0300 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79b0d8a..59577ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,8 @@ jobs: target: - { os: ubuntu-20.04, cc: gcc-11 } - { os: ubuntu-22.04, cc: gcc-12 } - - { os: ubuntu-22.04, cc: gcc-13 } + # GCC 13 is no longer available on Ubuntu 20.04. + - { os: ubuntu-24.04, cc: gcc-13 } - { os: ubuntu-20.04, cc: clang-12 } - { os: ubuntu-22.04, cc: clang-15 } steps: @@ -214,11 +215,11 @@ jobs: - name: Build (x86) working-directory: win - run: msbuild cglm.vcxproj /p:Configuration=Release /p:Platform=x86 /p:BuildInParallel=true + run: msbuild cglm.vcxproj /p:Configuration=Release /p:Platform=x86 /p:PlatformToolset=v143 /p:BuildInParallel=true - name: Build (x64) working-directory: win - run: msbuild cglm.vcxproj /p:Configuration=Release /p:Platform=x64 /p:BuildInParallel=true + run: msbuild cglm.vcxproj /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v143 /p:BuildInParallel=true build_swift: name: Swift ${{ matrix.swift }} / ${{ matrix.os }}