more debug #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: D++ CI | |
on: | |
push: | |
paths: | |
- '**Dockerfile' | |
- '**.cxx' | |
- '**.cpp' | |
- '**.h' | |
- '**.hpp' | |
- '**.cmake' | |
- '**ci.yml' | |
- '**CMakeLists.txt' | |
pull_request: | |
paths: | |
- '**Dockerfile' | |
- '**.cxx' | |
- '**.cpp' | |
- '**.h' | |
- '**.hpp' | |
- '**.cmake' | |
- '**ci.yml' | |
- '**CMakeLists.txt' | |
- '!**/docpages/**' | |
permissions: | |
contents: read | |
jobs: | |
linux: | |
permissions: | |
contents: write | |
name: Linux ${{matrix.cfg.arch}} (${{matrix.cfg.cpp-version}}) | |
runs-on: ${{matrix.cfg.os}} | |
strategy: | |
fail-fast: false # Don't fail everything if one fails. We want to test each OS/Compiler individually | |
matrix: | |
cfg: | |
- { arch: 'amd64', concurrency: 2, os: ubuntu-22.04, package: clang-13, cpp-version: clang++-13} | |
- { arch: 'amd64', concurrency: 2, os: ubuntu-22.04, package: clang-14, cpp-version: clang++-14} | |
- { arch: 'amd64', concurrency: 2, os: ubuntu-22.04, package: clang-15, cpp-version: clang++-15} | |
- { arch: 'amd64', concurrency: 2, os: ubuntu-22.04, package: g++-13, cpp-version: g++-13} | |
- { arch: 'amd64', concurrency: 2, os: ubuntu-22.04, package: g++-12, cpp-version: g++-12} | |
- { arch: 'amd64', concurrency: 2, os: ubuntu-22.04, package: g++-11, cpp-version: g++-11} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | |
with: | |
egress-policy: audit | |
- name: Checkout FDR | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install apt packages | |
run: sudo apt update && sudo apt-get install -y ${{ matrix.cfg.package }} pkg-config libsodium-dev libopus-dev zlib1g-dev rpm | |
- name: Install DPP | |
run: wget -O dpp.deb https://dl.dpp.dev/ && sudo dpkg -i dpp.deb | |
- name: Generate CMake | |
run: cmake -B build | |
env: | |
CXX: ${{matrix.cfg.cpp-version}} | |
- name: Build Project | |
run: cmake --build build -j${{ matrix.cfg.concurrency }} |