ci(linux): Add ninja jobs for C++

This commit is contained in:
Corentin Le Molgat
2021-11-08 11:57:18 +01:00
parent 4f7d1cc258
commit a6d96b8db9

View File

@@ -4,7 +4,43 @@ on: [push, pull_request]
jobs:
# Building using the github runner environement directly.
cmake:
ninja:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check cmake
run: cmake --version
- name: Install Ninja
run: |
sudo apt update
sudo apt install -y ninja-build
- name: Configure
run: cmake -S. -Bbuild -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DBUILD_DEPS=ON -DCMAKE_INSTALL_PREFIX=install
- name: Build
run: cmake --build build --target all -v
- name: Test
run: CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
- name: Install
run: cmake --build build --target install -v
ninja-multi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check cmake
run: cmake --version
- name: Install Ninja
run: |
sudo apt update
sudo apt install -y ninja-build
- name: Configure
run: cmake -S. -Bbuild -G "Ninja Multi-Config" -DBUILD_DEPS=ON -DCMAKE_INSTALL_PREFIX=install
- name: Build
run: cmake --build build --config Release --target all -v
- name: Test
run: CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --config Release --target test -v
- name: Install
run: cmake --build build --config Release --target install -v
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2