Update Naruto Shippuden Ultimate Ninja Storm 3 Full Burst BLUS31350 0… #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build package | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
build_pkg: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Checkout Dependecies | |
run: | | |
git clone https://github.com/bucanero/dbglogger.git --depth 1 | |
git clone https://github.com/bucanero/ps3mapi-lib.git --depth 1 | |
- name: Set env vars | |
id: slug | |
run: | | |
echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" | |
echo "pkg_file=ArtemisPS3-GUI/ArtemisPS3-GUI.pkg" >> $GITHUB_ENV | |
# using pre-compiled sdk | |
- name: Download PSL1GHT Toolchain | |
run: | | |
curl -sL https://github.com/bucanero/ps3toolchain/releases/download/ubuntu-latest-fad3b5fb/ps3dev-ubuntu-latest-2020-08-31.tar.gz | tar xvz -C ./ | |
echo "PS3DEV=${GITHUB_WORKSPACE}/ps3dev" >> $GITHUB_ENV | |
echo "PSL1GHT=${GITHUB_WORKSPACE}/ps3dev" >> $GITHUB_ENV | |
- name: Install dbglogger | |
working-directory: dbglogger | |
run: | | |
make | |
make install | |
- name: Install ps3mapi-lib | |
working-directory: ps3mapi-lib | |
run: | | |
make | |
make install | |
- name: Build Artemis App Package | |
working-directory: ArtemisPS3-GUI | |
run: | | |
make createzip | |
make pkg | |
- name: Push package artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artemis-ps3-build_${{ steps.slug.outputs.sha8 }} | |
path: ${{ env.pkg_file }} | |
if-no-files-found: error | |
# don't keep artifacts for too long | |
retention-days: 7 |