Skip to content

Local CI updates

Local CI updates #17

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build_linux:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
strategy:
matrix:
config:
- { compiler: gcc, version: 8, build_type: Release, cppstd: 14, examples: ON }
- { compiler: gcc, version: 9, build_type: Release, cppstd: 17, examples: OFF }
- { compiler: gcc, version: 10, build_type: Debug, cppstd: 20, examples: ON }
- { compiler: gcc, version: 11, build_type: Debug, cppstd: 20, examples: OFF }
- { compiler: gcc, version: 12, build_type: Release, cppstd: 20, examples: ON }
- { compiler: clang, version: 11, build_type: Release, cppstd: 14, examples: OFF }
- { compiler: clang, version: 11, build_type: Debug, cppstd: 17, examples: ON }
- { compiler: clang, version: 12, build_type: Debug, cppstd: 17, examples: OFF }
- { compiler: clang, version: 15, build_type: Release, cppstd: 14, examples: ON }
container:
image: ${{ matrix.config.compiler == 'clang' && 'teeks99/clang-ubuntu' || matrix.config.compiler }}:${{ matrix.config.version }}
name: "${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }}, ${{ matrix.config.build_type }})"
steps:
- uses: actions/checkout@v3
- name: Setup
run: |
apt-get update && apt-get install -y curl git
CMAKE_VERSION="3.24.2"
curl -sSL https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-x86_64.sh -o install-cmake.sh
chmod +x install-cmake.sh
./install-cmake.sh --prefix=/usr/local --skip-license
- name: Setup Compiler
if: matrix.config.compiler == 'clang'
run: |
if [[ "${{ matrix.config.version }}" -ge 4 ]]; then
scripts/ci_setup_clang.sh "${{ matrix.config.version }}"
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV
fi
echo "CC=clang-${{ matrix.config.version }}" >> $GITHUB_ENV
echo "CXX=clang++-${{ matrix.config.version }}" >> $GITHUB_ENV
- name: Dependencies
run: |
# Install json
curl -sSL https://github.com/nlohmann/json/archive/v3.11.2.tar.gz -o /tmp/json.tar.gz
tar zxf /tmp/json.tar.gz
pushd json-* && mkdir build && cd build && cmake -DJSON_BuildTests=OFF .. && make install && popd
# Install yaml-cpp
curl -sSL https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.7.0.tar.gz -o /tmp/yaml.tar.gz
tar zxf /tmp/yaml.tar.gz
pushd yaml-* && mkdir build && cd build && cmake -DYAML_BUILD_SHARED_LIBS=ON -DYAML_CPP_BUILD_TESTS=OFF .. && make install && popd
# Install cxxopts
curl -sSL https://github.com/jarro2783/cxxopts/archive/v3.1.1.tar.gz -o /tmp/cxxopts.tar.gz
tar zxf /tmp/cxxopts.tar.gz
pushd cxxopts-* && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCXXOPTS_BUILD_EXAMPLES=OFF -DCXXOPTS_BUILD_TESTS=OFF .. && make install && popd
# Install toml11
curl -sSL https://github.com/ToruNiina/toml11/archive/v3.7.1.tar.gz -o /tmp/toml11.tar.gz
tar zxf /tmp/toml11.tar.gz
pushd toml11-* && mkdir build && cd build && cmake -Dtoml11_BUILD_TEST=OFF .. && make install && popd
# Install googletest
curl -sSL https://github.com/google/googletest/archive/refs/tags/v1.13.0.tar.gz -o /tmp/googletest.tar.gz
tar zxf /tmp/googletest.tar.gz
pushd googletest-* && mkdir build && cd build && cmake .. && make install && popd
- name: Build
run: |
mkdir -p build && cd build
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
cmake .. \
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
-DCMAKE_CXX_STANDARD=${{ matrix.config.cppstd }} \
-DBUILD_EXAMPLES=${{ matrix.config.example }} \
-DYAML_SUPPORT=ON \
-DJSON_SUPPORT=ON \
-DTOML_SUPPORT=ON \
-DBUILD_TESTS=ON
make -j2
ctest -j2 --output-on-failure