2020-09-23 22:39:16 +01:00
|
|
|
name: Build AIO-switch-updater
|
|
|
|
|
2021-02-20 12:58:04 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2020-09-23 22:39:16 +01:00
|
|
|
jobs:
|
|
|
|
AIO-switch-updater:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: devkitpro/devkita64_devkitarm
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2021-02-20 12:58:04 +00:00
|
|
|
|
|
|
|
- name: update libnx
|
|
|
|
run: |
|
|
|
|
sudo pacman -S libnx
|
2020-09-23 22:39:16 +01:00
|
|
|
- name: Update repo.
|
|
|
|
run: |
|
|
|
|
git submodule update --init --recursive
|
|
|
|
|
2020-12-13 18:21:03 +00:00
|
|
|
- name: Building aio-switch-updater
|
2020-09-23 22:39:16 +01:00
|
|
|
run: |
|
2021-01-28 19:26:41 +00:00
|
|
|
pushd aiosu-forwarder
|
|
|
|
make
|
|
|
|
popd
|
2020-09-23 22:39:16 +01:00
|
|
|
make -j$(nproc)
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
2020-12-13 18:21:03 +00:00
|
|
|
name: aio-switch-updater
|
2021-01-28 19:26:41 +00:00
|
|
|
path: aio-switch-updater.nro
|