forked from Cpasjuste/pemu
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 858 Bytes
/
3ds-dev.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
name: 3ds-dev
on:
push:
branches: [ dev ]
workflow_dispatch:
jobs:
build-3ds-dev:
runs-on: ubuntu-20.04
container: devkitpro/devkitarm:latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install build dependencies
run: |
sudo apt -yq update
sudo apt -yq install git build-essential cmake zip
- name: Configure
run: |
cd $GITHUB_WORKSPACE
source /etc/profile.d/devkit-env.sh
mkdir cmake-build && cd cmake-build
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug .. \
-DPLATFORM_3DS=ON -DOPTION_LIGHT=ON -DOPTION_MPV_PLAYER=OFF
- name: Build pgen
run: |
cd $GITHUB_WORKSPACE/cmake-build
make pgen.3dsx