forked from SAtacker/quick-ftxui
-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (46 loc) · 1.21 KB
/
linux_build_no_boost.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
name: Linux Build Boost Fetch
on:
push:
branches: [ master ]
paths:
- ".github/workflows/linux_build_no_boost.yml"
- "include/**"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
pull_request:
branches: [ master ]
paths:
- ".github/workflows/linux_build_no_boost.yml"
- "include/**"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
jobs:
build:
name: ${{matrix.cxx}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cxx:
- g++-10
- clang++-12
include:
- cxx: g++-10
compiler: g++-10
- cxx: clang++-12
compiler: clang++-12
env:
CXX: ${{matrix.cxx}}
CMAKE_PREFIX_PATH: ${{github.workspace}}/.local
steps:
- uses: actions/checkout@v2
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DQUICK_FTXUI_FETCH_BOOST=ON
- name: Build
run: cmake --build build --parallel
- name: Test
run: pushd build && cmake .. -DQUICK_FTXUI_TESTS=ON && cmake --build . --parallel && ctest -C Release && popd
- name: Install
run: cmake --install build --prefix $CMAKE_PREFIX_PATH