From 6439c0609722e04a076f891e6f44b5aefc19c819 Mon Sep 17 00:00:00 2001 From: Anh Nguyen-Tuong <zenpoems@gmail.com> Date: Wed, 21 Nov 2018 21:34:59 -0500 Subject: [PATCH] Put back $PSZ cat and ls tests Former-commit-id: 22f832279ccb66a82d42210f2b27874965b4f67c --- .gitlab-ci.yml | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e1670780f..245bc07f9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -130,4 +130,67 @@ verify-fails-centos75: tags: - centos75 +# +# $PSZ ls +# + +# template +.xform-ls: &xform-ls + stage: test + script: + - ./cicd_tests/xform-ls.sh + +#per OS +xform-ls-ubuntu18: + <<: *xform-ls + tags: + - ubuntu18 + variables: + OS: 'ubuntu18' + +xform-ls-ubuntu16: + <<: *xform-ls + tags: + - ubuntu16 + variables: + OS: 'ubuntu16' + +xform-ls-centos75: + <<: *xform-ls + tags: + - centos75 + variables: + OS: 'centos75' + +# +# $PSZ cat +# + +# template +.xform-cat: &xform-cat + stage: test + script: + - ./cicd_tests/xform-cat.sh + +xform-cat-ubuntu18: + <<: *xform-cat + tags: + - ubuntu18 + variables: + OS: 'ubuntu18' + +xform-cat-ubuntu16: + <<: *xform-cat + tags: + - ubuntu16 + variables: + OS: 'ubuntu16' + +xform-cat-centos75: + <<: *xform-cat + tags: + - centos75 + variables: + OS: 'centos75' + -- GitLab