From 50fb32c806bdf5c7efcb5f537ea75d8ea188a0c9 Mon Sep 17 00:00:00 2001 From: Minionguyjpro Date: Tue, 29 Aug 2023 10:31:12 +0200 Subject: [PATCH] Add Github Actions workflow --- .github/workflows/build.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..f58d87d55 --- /dev/null +++ b/.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