Files
niklascfw c6b6b42eda
All checks were successful
Build / Build (push) Successful in 16s
Use parallel build in CI workflow
Add -j4 to make for faster compilation.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-13 21:35:43 +01:00

31 lines
690 B
YAML

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
container: devkitpro/devkita64:latest
steps:
- name: Install dependencies
run: apt-get update && apt-get install -y nodejs
- name: Checkout latest code
uses: actions/checkout@v5
with:
clean: true
submodules: recursive
- name: Build
run: |
export DEVKITPRO=/opt/devkitpro
make -j4 all
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: AllgemeinerProblemLoeser.bin
path: output/AllgemeinerProblemLoeser.bin