Skip to content

Commit

Permalink
CI update - Ubuntu non-default clang changed to 17 (was 13).
Browse files Browse the repository at this point in the history
  • Loading branch information
AngusJohnson committed Dec 21, 2024
1 parent a8269ca commit c1b13f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/actions_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,22 +80,22 @@ jobs:
run: |
cd CPP/build
env CTEST_OUTPUT_ON_FAILURE=1 make test
ubuntu-latest-clang-13:
ubuntu-latest-clang-17:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
- name: Install clang 13
- name: Install clang 17
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 13
sudo ./llvm.sh 17
- name: Build
run: |
export CC=/usr/bin/clang-13
export CXX=/usr/bin/clang++-13
export CC=/usr/bin/clang-17
export CXX=/usr/bin/clang++-17
mkdir CPP/build
cd CPP/build
cmake .. -DCLIPPER2_TESTS=ON
Expand Down

0 comments on commit c1b13f6

Please sign in to comment.