Skip to content

Workflow file for this run

name: generate-builds
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:

Check failure on line 8 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
build-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y libsdl2-dev libzip-dev libogg-dev libvorbis-dev libtinyxml2-dev
- name: Build
run: |
cmake -S. -Bbuild-rel -DCMAKE_BUILD_TYPE:STRING=Release
cmake --build build-rel --config Release -j3
build-windows:
runs-on: windows-latest
steps:
- name: Build
run: |
cmake -S . -B build-win -DCMAKE_BUILD_TYPE:STRING=Release
cmake --build build-windows --config Release --parallel 10