We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eec6ec commit c303234Copy full SHA for c303234
.github/workflows/wsl.yml
@@ -30,6 +30,7 @@ jobs:
30
31
matrix:
32
build_type: [x64-Debug-Linux, x64-Release-Linux]
33
+ gcc: [10, 11, 12]
34
35
steps:
36
- uses: actions/checkout@v4
@@ -49,6 +50,10 @@ jobs:
49
50
-DCMAKE_TOOLCHAIN_FILE="${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake" -DVCPKG_MANIFEST_DIR="${{ github.workspace }}/build"
51
-DVCPKG_TARGET_TRIPLET="x64-linux"
52
53
+ env:
54
+ CC: gcc-${{ matrix.gcc }}
55
+ CXX: g++-${{ matrix.gcc }}
56
+
57
- name: 'Build'
58
working-directory: ${{ github.workspace }}
59
run: cmake --build out/build/${{ matrix.build_type }}
0 commit comments