Add leb128 to libraries being tested
This commit is contained in:
parent
cd117ba70c
commit
4d8274a4a1
|
|
@ -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 {
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue