Skip to content

drop script

drop script #16

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main", "migrate-ci" ]
pull_request:
branches: [ "main" ]
# Allow to run manually
workflow_dispatch:
env:
BUILD_TYPE: Release
XDG_RUNTIME_DIR: /tmp
jobs:
# fedora-build-and-test:
# runs-on: ubuntu-latest
# container:
# image: quay.io/fedora/fedora:latest
# steps:
# - name: Install dependencies
# run: |
# dnf install -y git-core 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: Checkout
# uses: actions/checkout@v4
# with:
# submodules: recursive
# - name: Build and test
# run: mkdir build && cd build && ctest -VV -S ../cmake/ctest/script_ci.ctest
ubuntu-build-and-test:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update && \
sudo apt-get install --no-install-recommends --no-upgrade -y \
git-core build-essential cmake ninja-build clang llvm lcov curl \
libavcodec-dev libavformat-dev libboost-program-options-dev \
libboost-system-dev libbullet-dev libglm-dev libopenal-dev \
libsdl2-dev libboost-test-dev libqt5opengl5-dev libfreetype6-dev \
iwyu qtbase5-dev qt5-qmake
env:
DEBIAN_FRONTEND: noninteractive
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build and test
run: mkdir build && cd build && ctest -VV -S ../cmake/ctest/script_ci.ctest