-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (36 loc) · 1.28 KB
/
Copy pathmain.yml
File metadata and controls
40 lines (36 loc) · 1.28 KB
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
name: Compile
on:
#push:
# branches:
# - "**"
# paths-ignore:
# - '**.md'
# - '.github/ISSUE_TEMPLATE/**'
# - '.github/FUNDING.yml'
# - '.github/**/*.md'
pull_request:
paths-ignore:
- '**.md'
- '.github/ISSUE_TEMPLATE/**'
- '.github/FUNDING.yml'
- '.github/**/*.md'
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitppc:20250727
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
git clone https://github.com/GRRLIB/GRRLIB
dkp-pacman --sync --needed --noconfirm libfat-ogc ppc-libpng ppc-freetype ppc-libjpeg-turbo
cd GRRLIB/GRRLIB
make clean all install
echo "[nez-wii]" >> /opt/devkitpro/pacman/etc/nez.conf
echo "SigLevel = Never" >> /opt/devkitpro/pacman/etc/nez.conf
echo "Server = https://wii.nezbednik.eu.org" >> /opt/devkitpro/pacman/etc/nez.conf
cat /opt/devkitpro/pacman/etc/nez.conf >> /opt/devkitpro/pacman/etc/pacman.conf
dkp-pacman --config /opt/devkitpro/pacman/etc/nez.conf -Syu --noconfirm
dkp-pacman --sync --needed --noconfirm ppc-jansson wii-winyl
- name: Compile
run: make clean build package