diff --git a/gitlab-ci.yml b/gitlab-ci.yml index 5f037fcd636c3869651096984567a9c72ab406df..32d0b7c9d905ea817b4855d8f150924877d53f02 100644 --- a/gitlab-ci.yml +++ b/gitlab-ci.yml @@ -9,6 +9,8 @@ variables: ABCL_TAG: latest CCL_IMAGE: clfoundation/ccl CCL_TAG: latest + CLISP_IMAGE: clfoundation/clisp + CLISP_TAG: latest CMUCL_IMAGE: clfoundation/cmucl CMUCL_TAG: latest ECL_IMAGE: clfoundation/ecl @@ -155,6 +157,18 @@ CCL upgrade tests: variables: l: ccl +CLISP regression tests: + extends: .Regression tests + image: $CLISP_IMAGE:$CLISP_TAG + variables: + l: clisp + +CLISP upgrade tests: + extends: .Upgrade tests + image: $CLISP_IMAGE:$CLISP_TAG + variables: + l: clisp + CMUCL regression tests: extends: .Regression tests image: $CMUCL_IMAGE:$CMUCL_TAG @@ -220,6 +234,18 @@ CCL scripting upgrade tests: variables: l: ccl +CLISP scripting regression tests: + extends: .Scripting regression tests + image: $CLISP_IMAGE:$CLISP_TAG + variables: + l: clisp + +CLISP scripting upgrade tests: + extends: .Scripting upgrade tests + image: $CLISP_IMAGE:$CLISP_TAG + variables: + l: clisp + CMUCL scripting regression tests: extends: .Scripting regression tests image: $CMUCL_IMAGE:$CMUCL_TAG