diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-10-29 19:56:06 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-10-29 20:00:19 +0300 |
| commit | fd7f79aa10345307be0b02ead6300a2a83f73c89 (patch) | |
| tree | 101226c0016127d6ab0dfe6315dcf0b11e8f0147 /.gitlab-ci.yml | |
| parent | 180261c378bf8f9010f90eec116c0daa83e781a1 (diff) | |
feature(CI): test on both lua5.3 and lua5.4
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3832277..bb54677 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,21 @@ stages: - - test + - test5.3 + - test5.4 -test: +test5.3: image: alpine:3.12.1 - stage: test + stage: test5.3 before_script: - apk add lua5.3 luarocks5.3 make - luarocks-5.3 install fennel script: - make test + +test5.4: + image: alpine:3.12.1 + stage: test5.4 + before_script: + - apk add lua5.4 luarocks5.4 make + - luarocks-5.4 install fennel + script: + - make test |