Skip to content

fix MDTM, fix localtime spelling, fix wii asset copying, fix wii buil… #7

fix MDTM, fix localtime spelling, fix wii asset copying, fix wii buil…

fix MDTM, fix localtime spelling, fix wii asset copying, fix wii buil… #7

Workflow file for this run

name: build_switch
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
preset: [switch]
runs-on: ${{ matrix.os }}
container: devkitpro/devkita64:latest
steps:
- uses: actions/checkout@v3
# fetch latest cmake
- uses: lukka/get-cmake@latest
- name: Configure CMake
# disable ftp-gc until dkpa64 container uses latest libnx
run: |
cmake --preset ${{ matrix.preset }} -DUSE_VFS_GC=0
- name: Build
run: cmake --build --preset ${{ matrix.preset }} --parallel 4