Build system overhaul #406
Workflow file for this run
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: Smoketest / Informative / Fedora | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: Compilers | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
fedora: | |
# 37 is the oldest Fedora with a new enough dnf for resolving CXX | |
- "37" | |
- "38" | |
- "39" | |
# 40 is expected in 2024-04 | |
# 41 is expected in 2024-11 | |
compiler: | |
- g++ | |
- clang++ | |
build-type: | |
- Release | |
- Debug | |
container: fedora:${{ matrix.fedora }} | |
steps: | |
- name: Install Dependencies | |
run: | | |
dnf -y update | |
dnf -y install \ | |
git \ | |
"$(\ | |
dnf repoquery \ | |
--whatprovides '/usr/bin/${{ matrix.compiler }}' \ | |
--arch x86_64 \ | |
--latest-limit 1 \ | |
--queryformat '%{NAME}' \ | |
)" \ | |
cmake \ | |
make \ | |
ccache \ | |
boost-devel \ | |
cairo-devel \ | |
glew-devel \ | |
glm-devel \ | |
libvorbis-devel \ | |
SDL2_image-devel \ | |
SDL2_mixer-devel \ | |
SDL2_ttf-devel \ | |
SDL2-devel | |
- name: Checkout Anura | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: true | |
- name: Set ccache up | |
uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e # v1.2.9 | |
with: | |
key: ${{ github.job }}-fedora-${{ matrix.fedora }}-${{ matrix.compiler }}-${{ matrix.build-type }} | |
- name: Build Prep Anura | |
run: | | |
cmake . \ | |
-D CMAKE_CXX_COMPILER="${{ matrix.compiler }}" \ | |
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}" | |
- name: Build Anura | |
run: | | |
# Compile with number of available hyperthreads | |
make -j "$(getconf _NPROCESSORS_ONLN)" | |
- name: Run Unit Tests | |
run: ./anura --tests |