mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 13:11:54 +00:00
024ef7cd6e
* switch github CI to docker * empty commit to trigger CI
23 lines
439 B
YAML
23 lines
439 B
YAML
name: TegraExplorer builder
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: devkitpro/devkita64_devkitarm
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Build TegraExplorer
|
|
run: make -j$(nproc)
|
|
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: TegraExplorer
|
|
path: output/TegraExplorer.bin
|