New builds

This commit is contained in:
retropikzel 2026-07-22 16:54:37 +03:00
parent 64ea3b5ca5
commit 23e1118730
2 changed files with 19 additions and 0 deletions

1
.gitignore vendored
View File

@ -26,3 +26,4 @@ venv*
retropikzel/wasm/plus.sld
retropikzel/*.c
retropikzel/*.meta
!builds.json

18
builds.json Normal file
View File

@ -0,0 +1,18 @@
{
"builds": [
{
"name": "Chibi",
"image": "schemers/chibi:head",
"stages": [
{
"name": "Init",
"cmd": "apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev && git clone https://github.com/ashinn/chibi-scheme.git --depth=1 && make -j8 -C chibi-scheme && make -j8 -C chibi-scheme install && snow-chibi install retropikzel.compile-r7rs"
},
{
"name": "tap",
"cmd": "COMPILE_R7RS=chibi compile-r7rs -o tap retropikzel/tap/test.scm && ./tap"
}
]
}
]
}