All checks were successful
Build / Build (push) Successful in 16s
Add -j4 to make for faster compilation. Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
690 B
YAML
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
|