mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
ecb65c720a
* Change splat subrepo to use main branch * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "fbf3fa68a7" upstream: origin: "https://github.com/ethteck/splat.git" branch: "main" commit: "fbf3fa68a7" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * building now * vram classes in the us yaml * more progrezz * more * prepare to deal with the shiftable build * revert a couple things * bring the yaml more in line with the old one while debugging * got statis * vacuum * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "d6490bb877" upstream: origin: "https://github.com/ethteck/splat.git" branch: "main" commit: "d6490bb877" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * clean
12 lines
286 B
Bash
12 lines
286 B
Bash
#!/bin/bash
|
|
|
|
# docker build container
|
|
docker build --tag splat-build:latest . && \
|
|
# get compilers and tools
|
|
# clean
|
|
cd test/basic_app && sh clean.sh && cd ../../ && \
|
|
# build
|
|
docker run --rm -v $(pwd):/splat -w /splat/test/basic_app splat-build sh build.sh && \
|
|
# test
|
|
python3 test.py
|