-
Notifications
You must be signed in to change notification settings - Fork 0
106 lines (105 loc) · 2.97 KB
/
gha.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
95
96
97
98
99
100
101
102
103
104
105
106
name: GitHub CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
conda_gcc_10:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_conda_gcc_10.sh
conda_tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_conda_tidy.sh
conda_asan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_conda_asan.sh
conda_ubsan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_conda_ubsan.sh
conda_docs:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_conda_docs.sh
osx_clang_14:
runs-on: macos-11
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_osx_clang_14.sh
osx_clang_18:
runs-on: macos-11
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_osx_clang_18.sh
windows_vs2022_cpp20:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: "3.10"
channels: conda-forge
channel-priority: strict
- name: Build
shell: pwsh
run: |
conda install -y cmake boost-cpp
mkdir build
cd build
cmake ../ -G "Visual Studio 17 2022" -A x64 -DTANUKI_BUILD_TESTS=yes -DTANUKI_BUILD_TUTORIALS=yes -DTANUKI_WITH_BOOST_S11N=yes
cmake --build . --config Release -j4
ctest -j4 -V -C Release
windows_vs2022_cpp23:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: "3.10"
channels: conda-forge
channel-priority: strict
- name: Build
shell: pwsh
run: |
conda install -y cmake boost-cpp
mkdir build
cd build
cmake ../ -G "Visual Studio 17 2022" -A x64 -DTANUKI_BUILD_TESTS=yes -DTANUKI_BUILD_TUTORIALS=yes -DTANUKI_WITH_BOOST_S11N=yes -DCMAKE_CXX_STANDARD=23
cmake --build . --config Release -j4
ctest -j4 -V -C Release
conda_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: bash tools/gha_conda_coverage.sh
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)