Add leb128 to libraries being tested

This commit is contained in:
retropikzel 2026-02-26 08:42:20 +02:00
parent cd117ba70c
commit 4d8274a4a1
2 changed files with 2 additions and 3 deletions

3
Jenkinsfile vendored
View File

@ -16,8 +16,7 @@ pipeline {
parameters {
string(name: 'R6RS_SCHEMES', defaultValue: 'capyscheme chezscheme guile ikarus ironscheme loko mosh racket sagittarius ypsilon', description: '')
string(name: 'R7RS_SCHEMES', defaultValue: 'capyscheme chibi chicken cyclone foment gauche gambit guile kawa larceny loko meevax mit-scheme mosh racket sagittarius skint stklos tr7 ypsilon', description: '')
//string(name: 'LIBRARIES', defaultValue: 'ctrf mouth string url-encoding', description: '')
string(name: 'LIBRARIES', defaultValue: 'string', description: '')
string(name: 'LIBRARIES', defaultValue: 'ctrf mouth string url-encoding leb128', description: '')
}
stages {

View File

@ -36,7 +36,7 @@ logs:
${VENV}:
scheme-venv ${SCHEME} ${RNRS} ${VENV}
if [ "${RNRS}" = "r7rs" ]; then ${VENV}/bin/snow-chibi install --always-yes srfi.64; fi
if [ "${RNRS}" = "r7rs" ]; then ${VENV}/bin/snow-chibi install retropikzel.mouth; fi
if [ "${RNRS}" = "r7rs" ]; then ${VENV}/bin/snow-chibi install --always-yes retropikzel.mouth; fi
if [ "${RNRS}" = "r7rs" ]; then ${VENV}/bin/snow-chibi install --always-yes retropikzel.ctrf; fi
if [ "${SCHEME}-${RNRS}" = "mosh-r7rs" ]; then ${VENV}/bin/snow-chibi install --always-yes srfi.64; fi
if [ "${SCHEME}" = "chezscheme" ]; then ${VENV}/bin/akku install akku-r7rs chez-srfi; fi