Skip to content

Commit 8497477

Browse files
authored
Create build.yml, resolve #10 & #13
1 parent 7c35b57 commit 8497477

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
container: devkitpro/devkitarm
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
submodules: true
19+
20+
- name: Install dependencies
21+
run: apt-get update && apt-get install -y build-essential && apt-get install -y python3-pip && python3 -m pip install --upgrade pip && python3 -m pip install --upgrade Pillow
22+
23+
- name: Build
24+
run: make
25+
26+
- uses: actions/upload-artifact@v4
27+
with:
28+
name: demo
29+
path: summer.gba

0 commit comments

Comments
 (0)