1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2024-11-20 00:46:34 +00:00

Use cargo-skyline docker image

This commit is contained in:
jugeeya 2020-08-15 12:21:24 -07:00 committed by GitHub
parent da66544104
commit d5c75824e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: make
- name: Build overlay
run: make
working-directory: TrainingModpackOverlay
- name: Upload overlay artifact
@ -20,29 +20,36 @@ jobs:
with:
name: overlay
path: TrainingModpackOverlay/ovlTrainingModpack.ovl
upload:
plugin:
runs-on: ubuntu-latest
needs: overlay
container: jugeeya/cargo-skyline:latest
steps:
- uses: actions/checkout@v2
- name: Install cargo-skyline
run: cargo install --git https://github.com/jam1garner/cargo-skyline
- name: Install rust-std-skyline-squashed
run: cd .. && git clone https://github.com/jam1garner/rust-std-skyline-squashed && cd -
- name: Install xargo
run: cargo install xargo
- name: Attempt to build
run: XARGO_RUST_SRC=$(realpath ../rust-std-skyline-squashed/src) PATH=$PATH:/usr/share/rust/.rustup/toolchains/nightly-2020-04-10-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/bin cargo skyline build --release
- uses: actions/download-artifact@v1
- name: Build release NRO
run: cargo skyline build --release
- name: Upload plugin artifact
uses: actions/upload-artifact@v1
with:
name: overlay
name: plugin
path: target/aarch64-skyline-switch/release/libtraining_modpack.nro
upload:
runs-on: ubuntu-latest
needs:
- overlay
- plugin
steps:
- name: Download all artifacts
uses: actions/download-artifact@v2
- name: Prepare zip
env:
SMASH_PLUGIN_DIR: atmosphere/contents/01006A800016E000/romfs/skyline/plugins
TESLA_OVERLAY_DIR: switch/.overlays
run: |
mkdir -p atmosphere/contents/01006A800016E000/romfs/skyline/plugins/
cp ./target/aarch64-skyline-switch/release/libtraining_modpack.nro atmosphere/contents/01006A800016E000/romfs/skyline/plugins/libtraining_modpack.nro
mkdir -p switch/.overlays/
cp overlay/ovlTrainingModpack.ovl switch/.overlays/ovlTrainingModpack.ovl
zip -r training_modpack_beta.zip atmosphere switch
mkdir -p ${{env.SMASH_PLUGIN_DIR}}
cp plugin/libtraining_modpack.nro ${{env.SMASH_PLUGIN_DIR}}/libtraining_modpack.nro
mkdir -p ${{env.TESLA_OVERLAY_DIR}}
cp overlay/ovlTrainingModpack.ovl ${{env.TESLA_OVERLAY_DIR}}/ovlTrainingModpack.ovl
zip -r training_modpack_beta.zip atmosphere switch
- name: Update Release
uses: meeDamian/github-release@2.0
with: