Skip to content

QE/LE: Handle for paths with subdirectories correctly #678

QE/LE: Handle for paths with subdirectories correctly

QE/LE: Handle for paths with subdirectories correctly #678

Workflow file for this run

name: Linux Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
build-type: ["Debug", "Release"]
name: Linux ${{ matrix.build-type }}
steps:
- uses: actions/checkout@v4
- name: Install Deps
run: |
sudo apt update
sudo apt install libgtk-3-dev libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libwebp-dev libportmidi-dev libcjson-dev asciidoctor
- name: Build
run: |
mkdir -p out/${{ matrix.build-type }}
cd out/${{ matrix.build-type }}
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ../../
make -j4
- name: Test
run: ctest --output-on-failure
working-directory: out/${{ matrix.build-type }}