WiiFlow_Lite/.github/workflows/main.yml

63 lines
2.4 KiB
YAML
Raw Normal View History

2020-11-13 19:05:13 +01:00
name: Build binaries
on: [push, pull_request]
jobs:
build:
2021-09-06 22:30:37 +02:00
runs-on: ubuntu-20.04
2020-11-13 19:05:13 +01:00
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- name: Cache
2022-11-30 16:09:04 +01:00
id: cache-1
2020-11-13 19:05:13 +01:00
uses: actions/cache@v2
with:
path: cache
2022-11-30 16:09:04 +01:00
key: ${{ runner.os }}-cache-1
2020-11-13 19:05:13 +01:00
2022-11-30 15:56:17 +01:00
- name: Download devkitPPC r41-2, libogc 2.3.1 and required tools
2022-11-30 16:09:04 +01:00
if: steps.cache-1.outputs.cache-hit != 'true'
2020-11-13 19:05:13 +01:00
# general-tools is needed for bin2s and gamecube-tools is needed for elf2dol
run: |
mkdir cache && cd cache
2022-11-30 15:56:17 +01:00
wget "https://wii.leseratte10.de/devkitPro/file.php/devkitPPC-r41-2-linux_x86_64.pkg.tar.xz"
wget "https://wii.leseratte10.de/devkitPro/file.php/devkitppc-rules-1.1.1-1-any.pkg.tar.xz"
wget "https://wii.leseratte10.de/devkitPro/file.php/libogc-2.3.1-1-any.pkg.tar.xz"
wget "https://wii.leseratte10.de/devkitPro/file.php/general-tools-1.2.0-2-linux_x86_64.pkg.tar.xz"
wget "https://wii.leseratte10.de/devkitPro/file.php/gamecube-tools-1.0.3-1-linux_x86_64.pkg.tar.xz"
2020-11-13 19:05:13 +01:00
cd ..
2021-09-06 22:30:37 +02:00
- name: Extract downloaded files
2020-11-13 19:05:13 +01:00
# general-tools is needed for bin2s and gamecube-tools is needed for elf2dol
run: |
2022-11-30 15:56:17 +01:00
tar -xf cache/devkitPPC-r41-2-linux_x86_64.pkg.tar.xz --strip-components=1
2021-09-06 22:30:37 +02:00
tar -xf cache/devkitppc-rules-1.1.1-1-any.pkg.tar.xz --strip-components=1
tar -xf cache/libogc-2.3.1-1-any.pkg.tar.xz --strip-components=1
tar -xf cache/general-tools-1.2.0-2-linux_x86_64.pkg.tar.xz --strip-components=1
tar -xf cache/gamecube-tools-1.0.3-1-linux_x86_64.pkg.tar.xz --strip-components=1
2020-11-13 19:05:13 +01:00
- name: Compile
run: |
PATH=$(pwd)/devkitpro/devkitPPC/bin:$PATH DEVKITPPC=$(pwd)/devkitpro/devkitPPC DEVKITPRO=$(pwd)/devkitpro make
2021-09-01 22:59:41 +02:00
- name: Package
id: pack
2020-11-13 19:05:13 +01:00
run: |
cp -r wii/apps apps
mkdir -p apps/wiiflow/
cp -r out/bins apps/wiiflow/bins
cp -r out/imgs apps/wiiflow/imgs
cp out/boot.dol apps/wiiflow/
mkdir -p wiiflow
cp -r wii/wiiflow/Languages wiiflow/languages
2021-04-03 22:44:06 +02:00
cp -r wii/wiiflow/themes_lite wiiflow/themes_lite
2021-04-03 01:02:19 +02:00
echo "::set-output name=sha::$(echo ${GITHUB_SHA} | head -c 7)"
2020-11-13 19:05:13 +01:00
- name: Upload binaries
uses: actions/upload-artifact@v2
with:
2021-04-03 00:46:34 +02:00
name: wiiflow_lite_${{ steps.pack.outputs.sha }}
2020-11-13 19:05:13 +01:00
path: |
apps
wiiflow