mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2025-01-26 19:23:15 -03:00
21 lines
439 B
YAML
21 lines
439 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 dkp-pacman -S gcc --noconfirm
|
|
make -j$(nproc)
|
|
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: TegraExplorer
|
|
path: output/TegraExplorer.bin
|