update calcprog for CSV. Still busted, though. #63
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: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
container: ghcr.io/projectpiki/build:main | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [usa.1] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Git config | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Build | |
run: make -j$(nproc) VERSION=${{matrix.version}} COMPILERS=/compilers/GC | |
- name: Upload map | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pikmin-${{matrix.version}}.map | |
path: build/*/build.map |