Skip to content

workflows: try to fix vita and 3ds... #75

workflows: try to fix vita and 3ds...

workflows: try to fix vita and 3ds... #75

Workflow file for this run

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