-
Notifications
You must be signed in to change notification settings - Fork 47
98 lines (81 loc) · 2.64 KB
/
linux.yaml
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
name: "Linux"
on:
push:
branches: [ master ]
pull_request:
# branches: [ master ]
jobs:
Linux-GCC:
runs-on: ubuntu-20.04
strategy:
matrix:
cxx: ['7', '13']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
steps:
- uses: lukka/get-cmake@latest
- uses: egor-tensin/setup-gcc@v1
with:
version: ${{matrix.cxx}}
- name: Get pushed code
uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B _build -G Ninja ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- name: Build
run: cmake --build _build --parallel
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
- name: Run tests
run: ctest --test-dir _build
Linux-Clang:
runs-on: ubuntu-20.04
strategy:
matrix:
cxx: ['7', '18']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON -DCMAKE_CXX_FLAGS="-stdlib=libc++"
steps:
- uses: lukka/get-cmake@latest
- uses: egor-tensin/setup-clang@v1
with:
version: ${{matrix.cxx}}
- name: Install libc++
run: |
sudo apt install -y libc++abi-${{matrix.cxx}}-dev libc++-${{matrix.cxx}}-dev
- name: Get pushed code
uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B _build -G Ninja ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- name: Build
run: cmake --build _build --parallel --verbose
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
- name: Run tests
run: ctest --test-dir _build
Alpine:
runs-on: ubuntu-latest
strategy:
matrix:
platform: ['armhf']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
defaults:
run:
shell: alpine.sh {0}
steps:
- name: Get pushed code
uses: actions/checkout@v4
- uses: jirutka/setup-alpine@v1
with:
branch: edge
arch: ${{matrix.platform}}
packages: >
build-base cmake
- name: Configure
run: cmake -S . -B _build -G Ninja ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- name: Build
run: cmake --build _build --parallel --verbose
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
- name: Run tests
run: ctest --test-dir _build