2022-02-12 13:28:19 +00:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
# This ensures that jobs get canceled when force-pushing
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
compiler: [ 'g++', 'clang' ]
|
2022-04-18 09:47:05 +00:00
|
|
|
type: [ 'debug', 'release' ]
|
|
|
|
compile_library: [ true, false ]
|
2022-02-12 13:28:19 +00:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: debian:testing
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: sh
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
apt-get -y update
|
2022-02-14 17:29:09 +00:00
|
|
|
apt-get -y install --no-install-recommends ${{ matrix.compiler }} lld meson pkgconf git ca-certificates locales-all python3-pip catch2 nlohmann-json3-dev
|
2022-02-12 13:28:19 +00:00
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Check toml.hpp
|
|
|
|
run: |
|
|
|
|
pip3 install --upgrade --requirement tools/requirements.txt
|
|
|
|
cd tools
|
|
|
|
./ci_single_header_check.py
|
|
|
|
|
|
|
|
- name: Configure Meson
|
|
|
|
run: |
|
|
|
|
if [ ${{ matrix.compiler }} = g++ ]; then linker=gold; else linker=lld; fi
|
2022-04-18 09:47:05 +00:00
|
|
|
CXX_LD=$linker meson setup build --buildtype=${{ matrix.type }} -Dcompile_library=${{ matrix.compile_library }} -Dpedantic=true -Dbuild_tests=true -Dbuild_examples=true -Dgenerate_cmake_config=false -Db_lto=false -Dasan_examples=true
|
2022-02-12 13:28:19 +00:00
|
|
|
|
|
|
|
- name: Build
|
2022-04-18 09:27:54 +00:00
|
|
|
run: meson compile -C build --jobs -1
|
2022-02-12 13:28:19 +00:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: meson test -C build --verbose
|
|
|
|
|
|
|
|
windows:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-04-18 09:47:05 +00:00
|
|
|
type: [ 'debug', 'release' ]
|
|
|
|
compile_library: [ true ] # , false ] # ... header-only mode takes far too long on github's windows runner
|
2022-02-12 13:28:19 +00:00
|
|
|
|
|
|
|
runs-on: windows-2022
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: cmd
|
|
|
|
|
|
|
|
steps:
|
2022-02-14 17:29:09 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python3 -m pip install -U pip==21.3.1
|
|
|
|
pip3 install meson ninja
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
|
|
|
|
- name: Configure Meson
|
2022-04-18 09:47:05 +00:00
|
|
|
run: meson setup --vsenv --buildtype=${{ matrix.type }} -Dcompile_library=${{ matrix.compile_library }} -Dpedantic=true -Dbuild_tests=true -Dbuild_examples=true -Dgenerate_cmake_config=false build
|
2022-02-14 17:29:09 +00:00
|
|
|
|
|
|
|
- name: Build
|
2022-04-18 09:27:54 +00:00
|
|
|
run: meson compile -C build --jobs -1
|
2022-02-14 17:29:09 +00:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: meson test -C build --verbose
|