blob: 7755cd13eb8d8a4676bdc2a7387920504b93b874 (
plain)
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
|
name: CI
on: [push, pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- compiler: gcc
config: cmake
- compiler: clang
config: cmake
- compiler: clang
config: asan
- compiler: clang
config: tsan
- compiler: clang
config: format
- compiler: clang
config: scan-build
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Configure Build & Test
shell: bash
env:
CC: ${{ matrix.compiler }}
run: ./travis.sh ${{ matrix.config }}
build-macox:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Configure Build & Test
shell: bash
run: ./travis.sh macos
build-win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/cache@v2
with:
path: c:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: chocolatey-cache-${{ hashFiles('.github/workflows/ci.yml') }}
- name: Install Prerequisites
run: choco install openssl
- name: Configure Build & Test
shell: bash
run: |
cmake -E make_directory build/
cmake -S . -B build/
cmake --build build/ --config Debug --target INSTALL
ctest -V ./build/
|