Skip to content

Commit

Permalink
Update GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
CompSciOrBust committed Nov 6, 2021
1 parent 3b56c8b commit 0eefdc3
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
name: Build Amiigo
sudo: required
services: docker
install: docker pull devkitpro/devkita64
script: docker run -ex make
sudo: required

on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
uses: actions/checkout@v1
name: Update repo.
run: git submodule update --init --recursive

name: Install devkitpro
run: docker pull devkitpro/devkita64

name: Make Amiigo
run: docker run -e ENABLE_COMPATIBILITY_REPORTING -v $TRAVIS_BUILD_DIR:/Amiigo devkitpro/devkita64 /bin/bash -ex make
uses: actions/upload-artifact@master
with:
name: Amiigo
path: Amiigo.nro

0 comments on commit 0eefdc3

Please sign in to comment.