-
Notifications
You must be signed in to change notification settings - Fork 0
94 lines (83 loc) · 2.78 KB
/
ci.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Langulus::Logger CI
on: push
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-latest]
build: [Debug, Release]
arch: [x86, x64]
cxx: [g++-14, clang++-19, ClangCl, v143]
exclude:
- os: ubuntu-24.04
cxx: v143
- os: ubuntu-24.04
cxx: ClangCl
- os: windows-latest
cxx: g++-14
- os: windows-latest
cxx: clang++-19
include:
- cxx: g++-14
c: gcc-14
- cxx: clang++-19
c: clang-19
- os: ubuntu-24.04
arch: x86
cmake_args: "-DCMAKE_CXX_FLAGS=-m32"
- os: ubuntu-24.04
arch: x64
cmake_args: "-DCMAKE_CXX_FLAGS=-m64"
- os: windows-latest
arch: x86
cmake_args: "-G \"Visual Studio 17 2022\" -A Win32"
- os: windows-latest
arch: x64
cmake_args: "-G \"Visual Studio 17 2022\" -A x64"
name: "${{matrix.os}}-${{matrix.cxx}}-${{matrix.build}}-${{matrix.arch}}"
runs-on: ${{matrix.os}}
steps:
- name: Clone
uses: actions/checkout@v4
- if: matrix.os == 'ubuntu-24.04' && matrix.arch == 'x86'
name: Prepare Linux for cross-compilation
run: |
sudo apt update
sudo apt install g++-14-multilib
- if: matrix.cxx == 'g++-14'
name: Installing G++ 14
run: |
sudo apt update
sudo apt install gcc-14 g++-14
- if: matrix.cxx == 'clang++-19'
name: Installing Clang 19
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo apt-add-repository "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-19 main"
sudo apt update
sudo apt install gcc-14 g++-14 # clang-19 needs stdc++14.2 see https://github.com/llvm/llvm-project/issues/102336
sudo apt install clang-19
- if: matrix.os == 'ubuntu-24.04'
name: Configure (Linux)
run: >
mkdir build && cd build && cmake ..
-DCMAKE_C_COMPILER=${{matrix.c}}
-DCMAKE_CXX_COMPILER=${{matrix.cxx}}
${{matrix.cmake_args}}
-DCMAKE_BUILD_TYPE=${{matrix.build}}
-DLANGULUS_TESTING=ON
- if: matrix.os == 'windows-latest'
name: Configure (Windows)
run: >
mkdir build && cd build && cmake ..
${{matrix.cmake_args}} -T "${{matrix.cxx}}"
-DCMAKE_BUILD_TYPE=${{matrix.build}}
-DLANGULUS_TESTING=ON
- name: Build
run: cmake --build build -j4 --config ${{matrix.build}}
- name: Test
run: cd build && ctest -V -C ${{matrix.build}}