mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 13:41:45 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
73ca98c6a8
1 changed files with 36 additions and 0 deletions
36
.github/workflows/builder.yml
vendored
Normal file
36
.github/workflows/builder.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
name: TegraExplorer builder
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install devkitpro
|
||||||
|
run: |
|
||||||
|
wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb
|
||||||
|
sudo dpkg -i devkitpro-pacman.deb
|
||||||
|
sudo dkp-pacman -S switch-dev --noconfirm
|
||||||
|
sudo dkp-pacman -S devkitARM --noconfirm
|
||||||
|
|
||||||
|
- name: Build TegraExplorer
|
||||||
|
run: |
|
||||||
|
echo # SETTING PATH #
|
||||||
|
export DEVKITPRO=/opt/devkitpro
|
||||||
|
export DEVKITARM=${DEVKITPRO}/devkitARM
|
||||||
|
export DEVKITPPC=${DEVKITPRO}/devkitPPC
|
||||||
|
export PATH=${DEVKITPRO}/tools/bin:$PATH
|
||||||
|
echo # MAKE #
|
||||||
|
make -j$(nproc)
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@master
|
||||||
|
with:
|
||||||
|
name: TegraExplorer
|
||||||
|
path: output/TegraExplorer.bin
|
Loading…
Reference in a new issue