Initial commit

This commit is contained in:
Gericom
2025-11-09 16:07:01 +01:00
commit 29671d041f
39 changed files with 26346 additions and 0 deletions

36
.github/workflows/nightly.yml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Build DSpico Bootloader
on:
push:
branches: ["develop"]
paths-ignore:
- 'README.md'
pull_request:
branches: ["develop"]
paths-ignore:
- 'README.md'
workflow_dispatch:
jobs:
dspico_bootloader:
runs-on: ubuntu-latest
container: skylyrac/blocksds:slim-v1.13.1
name: Build DSpico Bootloader
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: true
- name: Run build script
run: |
make
- name: Publish build to GH Actions
uses: actions/upload-artifact@v4
with:
path: |
BOOTLOADER.nds
name: DSpico Bootloader