Skip to content

Commit

Permalink
Add Github Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Minionguyjpro authored and PabloMK7 committed Oct 31, 2023
1 parent e2778a4 commit 50fb32c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,33 @@
name: CI

on:
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/*'
- 'LICENSE.txt'
- 'README.md'
pull_request:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/*'
- 'LICENSE.txt'
- 'README.md'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container: pablomk7/luma3dsbuildtools
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: safedir
run: git config --system --add safe.directory /__w/Luma3DS/Luma3DS
- name: Build
run: make -j$(nproc --all)
- uses: actions/upload-artifact@v3
with:
name: Luma3DS
path: boot.firm

0 comments on commit 50fb32c

Please sign in to comment.