forked from Aeplexi/hbc
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (41 loc) · 1.08 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Build HBC
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitppc
name: Build using devkitPPC via Docker
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt update && \
sudo apt install -y gcc sox gettext libpng-dev xxd python3-pip
pip install pycryptodome
- name: Build WiiPAX
run: |
cd wiipax
make
- name: Build HBC
run: |
cd channel
make
- name: Publish WAD
uses: actions/upload-artifact@v4
with:
path: "channel/title/channel_retail.wad"
name: The Homebrew Channel (WAD, LULZ)
- name: Publish ELF
uses: actions/upload-artifact@v4
with:
path: "channel/channelapp/channelapp-channel.elf"
name: The Homebrew Channel (ELF, LULZ)
- name: Publish DOL
uses: actions/upload-artifact@v4
with:
path: "channel/channelapp/channelapp-channel.dol"
name: The Homebrew Channel (DOL, LULZ)