Skip to content

Commit 25e6fda

Browse files
committed
next tes
1 parent e37e380 commit 25e6fda

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/linux-simple2.yml

Lines changed: 7 additions & 6 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-latest
8+
runs-on: ubuntu-22.04
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:
@@ -47,10 +47,11 @@ jobs:
4747
# -G Ninja
4848

4949
- name: Configure CMake
50+
env:
51+
CXX: ${{matrix.compiler.cxx}}
5052
run: |
5153
cmake -B build \
5254
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
53-
-DCMAKE_CXX_COMPILER=clang++ \
5455
-DRAPIDFUZZ_BUILD_TESTING=1 \
5556
-DRAPIDFUZZ_ENABLE_LINTERS=1 \
5657
-DRAPIDFUZZ_BUILD_FUZZERS=1

0 commit comments

Comments
 (0)