-
Notifications
You must be signed in to change notification settings - Fork 961
42 lines (40 loc) · 1.35 KB
/
linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Linux
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
compiler: [g++-11, g++-12, g++-13, clang++-15, clang++-16, clang++-17]
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v3
- name: install g++-13
if: matrix.compiler == 'g++-13'
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update && sudo apt-get install -y g++-13
- name: install clang++-15
if: matrix.compiler == 'clang++-15'
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 15
- name: install clang++-16
if: matrix.compiler == 'clang++-16'
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 16
- name: install clang++-17
if: matrix.compiler == 'clang++-17'
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17
- name: configure
run: CXX=${{ matrix.compiler }} cmake -Werror=dev -D CMAKE_BUILD_TYPE=${{ matrix.configuration }} -D BUILD_TESTS=1 -D CMAKE_COMPILE_WARNING_AS_ERROR=1 -B build
- name: build
run: cmake --build build -j $(nproc --all)
- name: run unit tests
run: ctest --test-dir build --output-on-failure --schedule-random -j $(nproc --all)