2020-05-04 20:24:49 +01:00
|
|
|
name: TegraExplorer builder
|
|
|
|
|
2020-12-29 12:10:21 +00:00
|
|
|
on: [push, pull_request]
|
2020-05-04 20:24:49 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2020-10-29 01:21:34 +00:00
|
|
|
container: devkitpro/devkita64_devkitarm
|
2020-05-04 20:24:49 +01:00
|
|
|
|
|
|
|
steps:
|
2020-10-29 01:21:34 +00:00
|
|
|
- uses: actions/checkout@v1
|
2020-05-04 20:24:49 +01:00
|
|
|
|
|
|
|
- name: Build TegraExplorer
|
2021-01-31 19:21:25 +00:00
|
|
|
run: |
|
2021-01-31 19:38:28 +00:00
|
|
|
sudo apt install build-essential -y
|
2021-01-31 19:21:25 +00:00
|
|
|
make -j$(nproc)
|
2020-05-04 20:24:49 +01:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: TegraExplorer
|
2020-05-04 20:35:29 +01:00
|
|
|
path: output/TegraExplorer.bin
|