Skip to content

remove "[static FS_MAX_PATH]" in place of "[FS_MAX_PATH]" to be c++ c… #6

remove "[static FS_MAX_PATH]" in place of "[FS_MAX_PATH]" to be c++ c…

remove "[static FS_MAX_PATH]" in place of "[FS_MAX_PATH]" to be c++ c… #6

Workflow file for this run

name: build_wii
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
preset: [wii]
runs-on: ${{ matrix.os }}
container: devkitpro/devkitppc:latest
steps:
- uses: actions/checkout@v3
# fetch latest cmake
- uses: lukka/get-cmake@latest
- name: Configure CMake
run: |
cmake --preset ${{ matrix.preset }}
- name: Build
run: cmake --build --preset ${{ matrix.preset }} --parallel 4