Files
AllgemeinerProblemLoeser/.github/workflows/main.yml
niklascfw 45c659f1ea
All checks were successful
Build / Build (push) Successful in 34s
Updated workflow
2026-02-13 21:24:35 +01:00

31 lines
686 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 all
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: AllgemeinerProblemLoeser.bin
path: output/AllgemeinerProblemLoeser.bin