mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-08 11:51:48 +00:00
Update rewrite.yml
This commit is contained in:
parent
21f16ef020
commit
9cdbbf096b
1 changed files with 29 additions and 21 deletions
50
.github/workflows/rewrite.yml
vendored
50
.github/workflows/rewrite.yml
vendored
|
@ -29,20 +29,28 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set environment variables
|
||||||
|
run: |
|
||||||
|
echo "nxdt_commit=${GITHUB_SHA::7}" >> $GITHUB_ENV
|
||||||
|
echo "need_node=$(command -v node >/dev/null 2>&1 && echo 0 || echo 1)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Taken from https://github.com/nektos/act/issues/973. Needed when running this workflow locally using Docker + act.
|
||||||
|
- name: Install node (ccache requirement)
|
||||||
|
if: ${{ env.need_node == '1' }}
|
||||||
|
run: |
|
||||||
|
curl -sS https://webi.sh/node | sh
|
||||||
|
echo ~/.local/opt/node/bin >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: Clone nxdumptool repository
|
- name: Clone nxdumptool repository
|
||||||
run: |
|
run: |
|
||||||
git clone --recurse-submodules https://github.com/DarkMatterCore/nxdumptool .
|
git clone --recurse-submodules https://github.com/DarkMatterCore/nxdumptool .
|
||||||
|
|
||||||
- name: Set environment variables
|
- name: Setup ccache
|
||||||
run: |
|
uses: hendrikmuhs/ccache-action@v1.2
|
||||||
echo "NXDT_COMMIT=${GITHUB_SHA::7}" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Set workspace permissions
|
- name: Set workspace permissions
|
||||||
run: chmod 777 -R "$GITHUB_WORKSPACE"
|
run: chmod 777 -R "$GITHUB_WORKSPACE"
|
||||||
|
|
||||||
- name: Setup ccache
|
|
||||||
uses: hendrikmuhs/ccache-action@v1.2
|
|
||||||
|
|
||||||
# ccache invocation is handled in the build script.
|
# ccache invocation is handled in the build script.
|
||||||
- name: Build nxdumptool-rewrite PoC binary
|
- name: Build nxdumptool-rewrite PoC binary
|
||||||
id: build
|
id: build
|
||||||
|
@ -62,33 +70,33 @@ jobs:
|
||||||
popd
|
popd
|
||||||
./build.sh --noconfirm
|
./build.sh --noconfirm
|
||||||
|
|
||||||
#- name: Build nxdumptool-rewrite GUI binary
|
- name: Build nxdumptool-rewrite GUI binary
|
||||||
# run: |
|
run: |
|
||||||
# make -j8 PREFIX="ccache aarch64-none-elf-"
|
make -j8 PREFIX="ccache aarch64-none-elf-"
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: nxdt_rw_poc-${{ env.NXDT_COMMIT }}.nro
|
name: nxdt_rw_poc-${{ env.nxdt_commit }}.nro
|
||||||
path: code_templates/tmp/nxdt_rw_poc.nro
|
path: code_templates/tmp/nxdt_rw_poc.nro
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: nxdt_rw_poc-${{ env.NXDT_COMMIT }}.elf
|
name: nxdt_rw_poc-${{ env.nxdt_commit }}.elf
|
||||||
path: code_templates/tmp/nxdt_rw_poc.elf
|
path: code_templates/tmp/nxdt_rw_poc.elf
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
#- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
# with:
|
with:
|
||||||
# name: nxdumptool-rewrite-${{ env.NXDT_COMMIT }}-WIP_UI.nro
|
name: nxdumptool-rewrite-${{ env.nxdt_commit }}-WIP_UI.nro
|
||||||
# path: nxdumptool.nro
|
path: nxdumptool.nro
|
||||||
# if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
#- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
# with:
|
with:
|
||||||
# name: nxdumptool-rewrite-${{ env.NXDT_COMMIT }}-WIP_UI.elf
|
name: nxdumptool-rewrite-${{ env.nxdt_commit }}-WIP_UI.elf
|
||||||
# path: nxdumptool.elf
|
path: nxdumptool.elf
|
||||||
# if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Upload artifact to prerelease
|
- name: Upload artifact to prerelease
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
|
|
Loading…
Reference in a new issue