Skip to content

Commit 8be9e60

Browse files
committed
up
1 parent 937fb00 commit 8be9e60

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/cmake.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff 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

@@ -50,10 +46,8 @@ jobs:
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+

0 commit comments

Comments
 (0)