mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 21:21:50 +00:00
24 lines
520 B
YAML
24 lines
520 B
YAML
name: TegraExplorer builder
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: devkitpro/devkita64_devkitarm
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Build TegraExplorer
|
|
run: |
|
|
sudo apt update -y
|
|
sudo apt install build-essential -y
|
|
make -j$(nproc)
|
|
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: TegraExplorer
|
|
path: |
|
|
output/TegraExplorer.bin
|
|
output/TegraExplorer_small.bin
|