libcross2d: bump submodule #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 3ds-dev | |
on: | |
push: | |
branches: [ dev ] | |
workflow_dispatch: | |
jobs: | |
build-3ds-dev: | |
runs-on: ubuntu-24.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 |