-
Notifications
You must be signed in to change notification settings - Fork 1
136 lines (118 loc) · 3.93 KB
/
ci_linux.yaml
File metadata and controls
136 lines (118 loc) · 3.93 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: CI on Linux
on:
# Trigger workflow on pull requests of any branch
pull_request:
# Trigger workflow on pushes to following branches
push:
branches:
- master
- dev
env:
TZ: Atlantic/Reykjavik
defaults:
run:
shell: bash -ex {0}
jobs:
build:
name: ${{ matrix.name }}
runs-on: ubuntu-18.04
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
include:
- name: "GCC8 Release"
pkg: "g++-8"
cxx: "g++-8"
cc: "gcc-8"
build_type: Release
- name: "GCC9 Debug"
pkg: "g++-9"
cxx: "g++-9"
cc: "gcc-9"
build_type: Debug
- name: "GCC10 Debug C++20"
pkg: "g++-10"
cxx: "g++-10"
cc: "gcc-10"
cxx_flags: "-std=c++20"
build_type: Debug
- name: "GCC11 Release C++20"
pkg: "g++-11"
cxx: "g++-11"
cc: "gcc-11"
cxx_flags: "-std=c++20"
build_type: Release
- name: "Clang10 Debug C++20"
pkg: "clang-10"
cxx: "clang++-10"
cc: "clang-10"
cxx_flags: "-std=c++20"
build_type: Debug
- name: "Clang12 Release C++20"
pkg: "clang-12"
cxx: "clang++-12"
cc: "clang-12"
cxx_flags: "-std=c++20"
build_type: Release
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: src
fetch-depth: 2
submodules: recursive
- name: Add package source
run: |
echo 'APT::Acquire::Retries "5";' | sudo tee -a /etc/apt/apt.conf.d/80-retries > /dev/null
sudo add-apt-repository --no-update --yes ppa:ubuntu-toolchain-r/ppa
sudo add-apt-repository --no-update --yes ppa:ubuntu-toolchain-r/test
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository --no-update --yes "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic main"
sudo add-apt-repository --no-update --yes "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-11 main"
sudo add-apt-repository --no-update --yes "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-12 main"
sudo apt-get update
- name: Install Build dependencies
run: sudo apt-get install --yes cmake ccache
- name: Install compiler ${{ matrix.name }}
run: sudo apt-get install --yes ${{ matrix.pkg }}
- name: Install zstd
run: sudo apt-get install --yes zstd libzstd-dev
- name: Load ccache
uses: actions/cache@v2
with:
path: .ccache
key: ${{ runner.os }}-${{ matrix.name }}-ccache-${{ github.ref }}-${{ github.run_number }}
# Restoring: From current branch, otherwise from base branch, otherwise from any branch.
restore-keys: |
${{ runner.os }}-${{ matrix.name }}-ccache-${{ github.ref }}
${{ runner.os }}-${{ matrix.name }}-ccache-${{ github.base_ref }}
${{ runner.os }}-${{ matrix.name }}-ccache-
- name: Tool versions
run: |
env cmake --version
env ${{ matrix.cxx }} --version
- name: Configure tests
env:
CXX: ${{ matrix.cxx }}
CC: ${{ matrix.cc }}
run: |
mkdir build
cd build
cmake ../src -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}"
- name: Build tests
env:
CCACHE_BASEDIR: ${{ github.workspace }}
CCACHE_DIR: ${{ github.workspace }}/.ccache
CCACHE_COMPRESS: true
CCACHE_COMPRESSLEVEL: 6
CCACHE_MAXSIZE: 500M
run: |
ccache -p || true
cd build
make -k -j2
ccache -s || true
- name: Run tests
run: |
cd build
make test