2021-01-01 21:30:01 +01:00
|
|
|
name: Build binaries
|
|
|
|
|
2021-02-04 17:53:49 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'HBC/**'
|
|
|
|
- 'Languages/**'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'HBC/**'
|
|
|
|
- 'Languages/**'
|
2021-01-01 21:30:01 +01:00
|
|
|
|
|
|
|
jobs:
|
2021-04-04 20:00:03 +02:00
|
|
|
download-build-tools:
|
2021-01-01 21:30:01 +01:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
timeout-minutes: 20
|
|
|
|
steps:
|
2021-04-04 20:00:03 +02:00
|
|
|
- name: Restore cache
|
2021-01-01 21:30:01 +01:00
|
|
|
id: cache-1
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: cache
|
|
|
|
key: ${{ runner.os }}-cache-1
|
|
|
|
|
2021-04-04 20:00:03 +02:00
|
|
|
- name: Download devkitPPC r38, libogc 2.1.0 and required tools
|
2021-01-01 21:30:01 +01:00
|
|
|
if: steps.cache-1.outputs.cache-hit != 'true'
|
2021-04-04 20:00:03 +02:00
|
|
|
# general-tools is needed for bin2s and gamecube-tools is needed for elf2dol & gcdsptool
|
2021-01-01 21:30:01 +01:00
|
|
|
run: |
|
|
|
|
mkdir cache && cd cache
|
|
|
|
wget "https://wii.leseratte10.de/devkitPro/file.php/devkitPPC-r38-1-linux_x86_64.pkg.tar.xz"
|
|
|
|
wget "https://wii.leseratte10.de/devkitPro/file.php/devkitppc-rules-1.1.0-1-any.pkg.tar.xz"
|
|
|
|
wget "https://wii.leseratte10.de/devkitPro/file.php/libogc-2.1.0-1-any.pkg.tar.xz"
|
|
|
|
wget "https://wii.leseratte10.de/devkitPro/file.php/general-tools-1.2.0-1-linux.pkg.tar.xz"
|
|
|
|
wget "https://wii.leseratte10.de/devkitPro/file.php/gamecube-tools-1.0.2-1-linux.pkg.tar.xz"
|
|
|
|
cd ..
|
|
|
|
|
2021-04-04 20:00:03 +02:00
|
|
|
- name: Verify checksums
|
2021-01-01 21:30:01 +01:00
|
|
|
run: |
|
|
|
|
sha256sum -c <<EOF
|
|
|
|
b8775c66e7500182a5f93335140d575a65ca2beb7110dfba16bf1eaf1d6fe13a cache/devkitPPC-r38-1-linux_x86_64.pkg.tar.xz
|
|
|
|
5cbb617bee3d53a6857427af9168694e21095ae3223819df62aaeaf52750d772 cache/devkitppc-rules-1.1.0-1-any.pkg.tar.xz
|
2021-04-04 20:00:03 +02:00
|
|
|
220871bfc45abcab612e020a00e6c8f19f51eb1be2d3c7d23f42cb10497ba786 cache/libogc-2.1.0-1-any.pkg.tar.xz
|
2021-01-01 21:30:01 +01:00
|
|
|
6ac68676e33fd53d8b716ea6c7247b0e465eff7f7a3cbb0e3093310615a48863 cache/gamecube-tools-1.0.2-1-linux.pkg.tar.xz
|
|
|
|
69edef800f01ff66dc5ed4d173cb3ac07e5336fbb926369eaa3c38163775c350 cache/general-tools-1.2.0-1-linux.pkg.tar.xz
|
|
|
|
EOF
|
2021-04-04 20:00:03 +02:00
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: download-build-tools
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Restore cache
|
|
|
|
id: cache-1
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: cache
|
|
|
|
key: ${{ runner.os }}-cache-1
|
2021-01-01 21:30:01 +01:00
|
|
|
|
2021-04-04 20:00:03 +02:00
|
|
|
- name: Check cache
|
|
|
|
if: steps.cache-1.outputs.cache-hit != 'true'
|
|
|
|
run: exit 1
|
2021-01-01 21:30:01 +01:00
|
|
|
|
2021-04-04 20:00:03 +02:00
|
|
|
- name: Extract downloaded files
|
|
|
|
run: |
|
|
|
|
tar -xf cache/devkitPPC-r38-1-linux_x86_64.pkg.tar.xz --strip-components=1
|
|
|
|
tar -xf cache/devkitppc-rules-1.1.0-1-any.pkg.tar.xz --strip-components=1
|
|
|
|
tar -xf cache/libogc-2.1.0-1-any.pkg.tar.xz --strip-components=1
|
|
|
|
tar -xf cache/general-tools-1.2.0-1-linux.pkg.tar.xz --strip-components=1
|
|
|
|
tar -xf cache/gamecube-tools-1.0.2-1-linux.pkg.tar.xz --strip-components=1
|
|
|
|
|
|
|
|
- name: Compile USB Loader GX
|
2021-01-01 21:30:01 +01:00
|
|
|
# version would be 0 unless subversion is removed
|
2021-04-04 20:00:03 +02:00
|
|
|
run: |
|
|
|
|
sudo apt-get -qq remove subversion > /dev/null
|
|
|
|
PATH=$(pwd)/devkitpro/devkitPPC/bin:$PATH DEVKITPPC=$(pwd)/devkitpro/devkitPPC DEVKITPRO=$(pwd)/devkitpro make
|
2021-01-01 21:30:01 +01:00
|
|
|
|
|
|
|
- name: Package
|
|
|
|
id: pack
|
|
|
|
run: |
|
2021-04-04 20:00:03 +02:00
|
|
|
mkdir -p upload/apps/usbloader_gx
|
|
|
|
cp boot.dol upload/apps/usbloader_gx
|
|
|
|
cp HBC/icon.png upload/apps/usbloader_gx
|
|
|
|
cp HBC/meta.xml upload/apps/usbloader_gx
|
2021-01-01 21:30:01 +01:00
|
|
|
echo "::set-output name=sha::$(echo ${GITHUB_SHA} | head -c 7)"
|
|
|
|
|
|
|
|
- name: Upload binary
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: usbloadergx_${{ steps.pack.outputs.sha }}
|
|
|
|
path: upload
|
|
|
|
|
|
|
|
- name: Upload debug binary
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: usbloadergx_${{ steps.pack.outputs.sha }}_debug
|
|
|
|
path: boot.elf
|
2021-04-04 20:00:03 +02:00
|
|
|
|
|
|
|
build-latest-libogc:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: download-build-tools
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Restore cache
|
|
|
|
id: cache-1
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: cache
|
|
|
|
key: ${{ runner.os }}-cache-1
|
|
|
|
|
|
|
|
- name: Check cache
|
|
|
|
if: steps.cache-1.outputs.cache-hit != 'true'
|
|
|
|
run: exit 1
|
|
|
|
|
|
|
|
- name: Extract downloaded files
|
|
|
|
run: |
|
|
|
|
tar -xf cache/devkitPPC-r38-1-linux_x86_64.pkg.tar.xz --strip-components=1
|
|
|
|
tar -xf cache/devkitppc-rules-1.1.0-1-any.pkg.tar.xz --strip-components=1
|
|
|
|
tar -xf cache/general-tools-1.2.0-1-linux.pkg.tar.xz --strip-components=1
|
|
|
|
tar -xf cache/gamecube-tools-1.0.2-1-linux.pkg.tar.xz --strip-components=1
|
|
|
|
|
|
|
|
- name: Checkout libogc
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: devkitPro/libogc
|
|
|
|
path: libogc
|
|
|
|
|
|
|
|
- name: Compile and install libogc
|
|
|
|
run: PATH=$(pwd)/devkitpro/devkitPPC/bin:$PATH DEVKITPPC=$(pwd)/devkitpro/devkitPPC DEVKITPRO=$(pwd)/devkitpro make install -C libogc
|
|
|
|
|
|
|
|
- name: Compile USB Loader GX
|
|
|
|
# version would be 0 unless subversion is removed
|
|
|
|
run: |
|
|
|
|
rm -r libogc
|
|
|
|
sudo apt-get -qq remove subversion > /dev/null
|
|
|
|
PATH=$(pwd)/devkitpro/devkitPPC/bin:$PATH DEVKITPPC=$(pwd)/devkitpro/devkitPPC DEVKITPRO=$(pwd)/devkitpro make
|
|
|
|
|
|
|
|
- name: Package
|
|
|
|
id: pack
|
|
|
|
run: |
|
|
|
|
mkdir -p upload/apps/usbloader_gx
|
|
|
|
cp boot.dol upload/apps/usbloader_gx
|
|
|
|
cp HBC/icon.png upload/apps/usbloader_gx
|
|
|
|
cp HBC/meta.xml upload/apps/usbloader_gx
|
|
|
|
echo "::set-output name=sha::$(echo ${GITHUB_SHA} | head -c 7)"
|
|
|
|
|
|
|
|
- name: Upload binary
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: usbloadergx_libogc_${{ steps.pack.outputs.sha }}
|
|
|
|
path: upload
|
|
|
|
|
|
|
|
- name: Upload debug binary
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: usbloadergx_libogc_${{ steps.pack.outputs.sha }}_debug
|
|
|
|
path: boot.elf
|