Overview
| Comment: | Add Wii U build to GitHub Actions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8e8610aabeab6f40274c6cff247c63d1 |
| User & Date: | js on 2022-08-06 14:59:55 |
| Other Links: | manifest | tags |
Context
|
2022-08-06
| ||
| 21:14 | Don't use struct sockaddr in OFSocketAddress (check-in: 25adea9a23 user: js tags: trunk) | |
| 14:59 | Add Wii U build to GitHub Actions (check-in: 8e8610aabe user: js tags: trunk) | |
| 14:54 | Add Nintendo Switch build to GitHub Actions (check-in: 455ad243c7 user: js tags: trunk) | |
Changes
Added .github/workflows/wii-u.yml version [b25255900b].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 |
name: wii-u
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: docker pull devkitpro/devkitppc
- uses: actions/checkout@v2
- name: autogen.sh
run: ./autogen.sh
- name: configure
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
-e PATH="/opt/devkitpro/devkitPPC/bin:$PATH" \
-v "$PWD:/objfw" \
devkitpro/devkitppc \
sh -c 'cd /objfw && ./configure --host=powerpc-eabi --with-wii-u'
- name: make
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
-e PATH="/opt/devkitpro/devkitPPC/bin:$PATH" \
-v "$PWD:/objfw" \
devkitpro/devkitppc \
sh -c "cd /objfw && make -j$(nproc)"
- name: make install
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
-e PATH="/opt/devkitpro/devkitPPC/bin:$PATH" \
-v "$PWD:/objfw" \
devkitpro/devkitppc \
sh -c "cd /objfw && make -j$(nproc)"
|