-
-
Notifications
You must be signed in to change notification settings - Fork 43
62 lines (47 loc) · 1.28 KB
/
Nintendo Wii U.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Nintendo Wii U
on:
push:
branches:
- dev/3.0
pull_request:
jobs:
WiiU-Release:
runs-on: ubuntu-latest
container:
image: docker://devkitpro/devkitppc
options: --cpus 2
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure
run: /opt/devkitpro/portlibs/wiiu/bin/powerpc-eabi-cmake -S . -B build
- name: Build
run: make -C build
- id: commit
uses: pr-mpt/actions-commit-hash@v1
- uses: actions/upload-artifact@v2
with:
name: Nintendo Wii U-${{ steps.commit.outputs.short }}
path: |
build/*.elf
build/*.wuhb
WiiU-Debug:
runs-on: ubuntu-latest
container:
image: docker://devkitpro/devkitppc
options: --cpus 2
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure
run: /opt/devkitpro/portlibs/wiiu/bin/powerpc-eabi-cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build
- name: Build
run: make -C build
- id: commit
uses: pr-mpt/actions-commit-hash@v1
- uses: actions/upload-artifact@v2
with:
name: Nintendo Wii U (Debug)-${{ steps.commit.outputs.short }}
path: |
build/*.elf
build/*.wuhb