29 lines
594 B
YAML
29 lines
594 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
container: devkitpro/devkita64:latest
|
|
|
|
steps:
|
|
- 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@v4
|
|
with:
|
|
name: AllgemeinerProblemLoeser.bin
|
|
path: output/AllgemeinerProblemLoeser.bin
|