-
Notifications
You must be signed in to change notification settings - Fork 107
35 lines (29 loc) · 1015 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build AIO-switch-updater
on:
push:
workflow_dispatch:
jobs:
AIO-switch-updater:
runs-on: ubuntu-latest
#container: hamletdufromage/devkita64_devkitarm
container: devkitpro/devkita64
steps:
- uses: actions/checkout@v1
- name: update repo
run: |
git config --global --add safe.directory /__w/aio-switch-updater/aio-switch-updater/lib/borealis
git config --global --add safe.directory /__w/aio-switch-updater/aio-switch-updater
git config --global --add safe.directory /__w/aio-switch-updater/aio-switch-updater/TegraExplorer
git submodule update --init --recursive
- name: install dependencies
run: |
sudo apt update -y
sudo apt install build-essential -y
- name: Building aio-switch-updater
run: |
make -C aiosu-forwarder -f Makefile
make -j$(nproc)
- uses: actions/upload-artifact@master
with:
name: aio-switch-updater
path: aio-switch-updater.nro