Skip to content

treewide: switch to thumb, use -Os #33

treewide: switch to thumb, use -Os

treewide: switch to thumb, use -Os #33

Workflow file for this run

name: Build flashcard-bootstrap
on:
push:
branches: ["master"]
paths-ignore:
- 'README.md'
pull_request:
branches: ["master"]
paths-ignore:
- 'README.md'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitarm
name: Build with Docker using devkitARM
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
- name: build dsbize patcher
run: |
sudo apt update
sudo apt install -y python3 gcc
gcc -o resource/dsbize/dsbize resource/dsbize/dsbize.c
chmod +x resource/dsbize/dsbize
- name: Make flashcard-bootstrap
run: |
make -C libnds32
make dist
- name: Prepare for build publishing
run: |
mkdir -p ~/artifacts
cp bootstrap.zip ~/artifacts
- name: Publish build to GH Actions
uses: actions/upload-artifact@v3
with:
path: ~/artifacts/*
name: build