Skip to content

Commit 86b5cfe

Browse files
committed
next tes
1 parent 2c363f9 commit 86b5cfe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/linux-simple2.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
build:
77
name: ${{matrix.compiler.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-latest
99
strategy:
1010
fail-fast: false
1111
matrix:
@@ -27,10 +27,10 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v4
2929

30-
- name: Prepare environment
31-
run: |
32-
sudo apt-get update
33-
sudo apt-get install -y ninja-build ${{matrix.compiler.other_pkgs}}
30+
#- name: Prepare environment
31+
# run: |
32+
# sudo apt-get update
33+
# sudo apt-get install -y ninja-build ${{matrix.compiler.other_pkgs}}
3434

3535
#- name: Configure CMake
3636
# env:
@@ -60,11 +60,11 @@ jobs:
6060
# run: ninja
6161

6262
- name: Build
63-
run: cmake --build build --config ${{matrix.BUILD_TYPE}}
63+
run: cmake --build build --config ${{matrix.built_type}}
6464

6565
- name: Test
6666
working-directory: build
67-
run: ctest -C ${{matrix.BUILD_TYPE}} --rerun-failed --output-on-failure
67+
run: ctest -C ${{matrix.built_type}} --rerun-failed --output-on-failure
6868

6969
- name: Fuzz Test
7070
working-directory: build

0 commit comments

Comments
 (0)