-
Notifications
You must be signed in to change notification settings - Fork 7
43 lines (40 loc) · 1.02 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
name: Build
on:
push:
branches: ["*"]
paths-ignore:
- README.md
- resources
pull_request:
branches: ["*"]
paths-ignore:
- README.md
- resources
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitarm
name: Build with Docker using devkitARM
steps:
- name: Install Python
run: sudo apt-get -y install python
- name: Checkout repo
uses: actions/checkout@v1
- name: Build dsidl
run: |
make
# Make CIA
curl -LO https://github.com/ihaveamac/ctr_toolkit/releases/download/make_cia6.4builds/make_cia6.4builds.zip
unzip -j make_cia6.4builds.zip linux/make_cia
./make_cia --srl=dsidl.dsi
- name: Upload dsidl.dsi
uses: actions/upload-artifact@v2
with:
name: dsidl.dsi
path: dsidl.dsi
- name: Upload dsidl.cia
uses: actions/upload-artifact@v2
with:
name: dsidl.cia
path: dsidl.cia