File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -20,22 +20,18 @@ jobs:
2020 runner : ubuntu-latest
2121 arch : x86_64
2222 cc : gcc
23- cxx : g++
2423 - name : " Linux x86_64 Clang"
2524 runner : ubuntu-latest
2625 arch : x86_64
2726 cc : clang
28- cxx : clang++
2927 - name : " Linux aarch64 GCC"
3028 runner : ubuntu-24.04-arm64
3129 arch : aarch64
3230 cc : gcc
33- cxx : g++
3431 - name : " Linux aarch64 Clang"
3532 runner : ubuntu-24.04-arm64
3633 arch : aarch64
3734 cc : clang
38- cxx : clang++
3935
4036 name : ${{ matrix.name }}
4137
5046
5147 - name : Configure CMake
5248 run : |
53- CC=${{ matrix.cc }} CXX=${{ matrix.cxx }} cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
49+ CC=${{ matrix.cc }} cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
5450
5551 - name : Build
5652 run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
57-
58- - name : Run tests
59- run : ${{github.workspace}}/build/test
53+
You can’t perform that action at this time.
0 commit comments