forked from coderman64/netsurf-3ds
-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (44 loc) · 1.08 KB
/
Copy pathbuild-3ds.yml
File metadata and controls
46 lines (44 loc) · 1.08 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
41
42
43
44
45
46
name: NetSurf 3DS build
on:
push:
branches:
- main
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container:
image: devkitpro/devkitarm:latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
- name: Install 3DS dependencies
run: |
dkp-pacman -Syy --noconfirm
dkp-pacman -S --needed --noconfirm \
3ds-sdl \
3ds-mbedtls \
3ds-curl \
3ds-libpng \
3ds-libjpeg-turbo \
3ds-libiconv \
3ds-freetype
- name: Build bundles
run: |
make bundle -j2
- name: Upload 3DSX artifact
uses: actions/upload-artifact@v3
with:
name: netsurf-3dsx
path: bundle/netsurf-3dsx.zip
if-no-files-found: error
- name: Upload resources artifact
uses: actions/upload-artifact@v3
with:
name: resources
path: bundle/resources.zip
if-no-files-found: error