1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 21:43:40 +01:00
TegraExplorer/.github/workflows/builder.yml

26 lines
515 B
YAML
Raw Normal View History

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
2021-07-25 19:52:29 +01:00
container: devkitpro/devkita64
2020-05-04 20:24:49 +01:00
steps:
- 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:41:40 +00:00
sudo apt update -y
2021-01-31 19:38:28 +00:00
sudo apt install build-essential -y
2021-07-27 12:34:56 +01:00
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
2021-01-31 19:45:19 +00:00
path: |
output/TegraExplorer.bin
output/TegraExplorer_small.bin