mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 12:11:44 +00:00
Merge branch 'rewrite' of https://github.com/DarkMatterCore/nxdumptool into rewrite
This commit is contained in:
commit
ffe327b868
2 changed files with 57 additions and 2 deletions
57
.github/workflows/rewrite.yml
vendored
Normal file
57
.github/workflows/rewrite.yml
vendored
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
name: Build nxdumptool 'rewrite' tests
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ rewrite ]
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: devkitpro/devkita64
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: Updating repos, install dkp-toolchain-vars, and set permissions...
|
||||||
|
run: |
|
||||||
|
sudo apt-get update ; sudo apt-get upgrade -y patch fakeroot p7zip-full
|
||||||
|
sudo -n dkp-pacman --noconfirm -U "https://web.archive.org/web/20220209041425if_/https://wii.leseratte10.de/devkitPro/other-stuff/dkp-toolchain-vars-1.0.0-2-any.pkg.tar.xz"
|
||||||
|
useradd nxdt-build
|
||||||
|
chmod 777 -R $GITHUB_WORKSPACE
|
||||||
|
|
||||||
|
- name: Export variables.
|
||||||
|
run: |
|
||||||
|
export COMMIT="$(git rev-parse --short HEAD)" ; echo commit="$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Building libusbhsfs - liblwext4...
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/libs/libusbhsfs/liblwext4
|
||||||
|
sudo -u nxdt-build -n COMMIT="$(git rev-parse --short HEAD)" DEVKITPRO=/opt/devkitpro DEVKITARM=/opt/devkitpro/devkitARM DEVKITPPC=/opt/devkitpro/devkitPPC dkp-makepkg
|
||||||
|
sudo dkp-pacman -U switch-lwext4*.tar.xz --noconfirm
|
||||||
|
|
||||||
|
- name: Building libusbhsfs - libntfs-3g...
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/libs/libusbhsfs/libntfs-3g
|
||||||
|
sudo -u nxdt-build -n COMMIT="$(git rev-parse --short HEAD)" DEVKITPRO=/opt/devkitpro DEVKITARM=/opt/devkitpro/devkitARM DEVKITPPC=/opt/devkitpro/devkitPPC dkp-makepkg
|
||||||
|
sudo dkp-pacman -U switch-libntfs-3g*.tar.xz --noconfirm
|
||||||
|
|
||||||
|
- name: Building nxdumptool...
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE
|
||||||
|
./build.sh
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v2.3.1
|
||||||
|
with:
|
||||||
|
name: nxdumptool rewrite (NRO) - ${{ env.commit }}.7z
|
||||||
|
path: nxdumptool-rewrite_poc_${{ env.commit }}.7z
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v2.3.1
|
||||||
|
with:
|
||||||
|
name: nxdumptool rewrite - (Debug ELF) - ${{ env.commit }}.7z
|
||||||
|
path: nxdumptool-rewrite_poc_${{ env.commit }}-Debug_ELFs.7z
|
||||||
|
if-no-files-found: error
|
2
build.sh
2
build.sh
|
@ -48,5 +48,3 @@ cd ../..
|
||||||
rm -f ./source/main.c
|
rm -f ./source/main.c
|
||||||
rm -rf ./code_templates/tmp
|
rm -rf ./code_templates/tmp
|
||||||
mv ./main.cpp ./source/main.cpp
|
mv ./main.cpp ./source/main.cpp
|
||||||
|
|
||||||
read -p "Press any key to finish ..."
|
|
||||||
|
|
Loading…
Reference in a new issue