TegraExplorer/.github/workflows/builder.yml

26 lines
515 B
YAML
Raw Permalink Normal View History

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