-
Notifications
You must be signed in to change notification settings - Fork 45
44 lines (34 loc) · 1.19 KB
/
linux.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
name: Linux
on: [push, pull_request]
jobs:
Linux:
strategy:
fail-fast: false
matrix:
compiler: [gcc-14, clang-18]
config: [debug, release]
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
with:
submodules: true
- name: Install Dependencies
run: |
sudo add-apt-repository -y universe
sudo apt-get update
sudo apt-get install -yq libgtest-dev libboost-program-options-dev rapidjson-dev ninja-build
- name: Build GTest
run: |
cmake -E make_directory gtest
cd gtest
cmake -DCMAKE_BUILD_TYPE=${{ matrix.config == 'debug' && 'Debug' || 'Release' }} -G Ninja /usr/src/gtest
cmake --build . -j -v
sudo cmake --install .
- name: Create Build Environment
run: cmake -E make_directory build
- name: Configure CMake
run: cmake --preset ${{ matrix.compiler }}-${{ matrix.config }} -DGRAPHQL_USE_TAOCPP_JSON=OFF -DCMAKE_TOOLCHAIN_FILE=
- name: Build
run: cmake --build --preset ${{ matrix.compiler }}-${{ matrix.config }} -j -v
- name: Test
run: ctest --preset ${{ matrix.compiler }}-${{ matrix.config }} --output-on-failure