drop script #11
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: Build and Test | |
on: | |
push: | |
branches: [ "main", "migrate-ci" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allow to run manually | |
workflow_dispatch: | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/fedora/fedora:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
dnf install -y boost-devel gcc gcc-c++ clang llvm lcov curl \ | |
boost-devel cmake make ninja-build bullet-devel ffmpeg-free-devel \ | |
glm-devel openal-soft-devel SDL2-devel qt5-qtbase-devel \ | |
freetype-devel libasan | |
- name: Build and test | |
run: mkdir build && ctest -DENABLE_PROFILING=OFF -VV -S cmake/ctest/script_ci.ctest | |
env: | |
XDG_RUNTIME_DIR: /tmp |