diff options
-rw-r--r-- | .gitlab-ci.yml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 67a53ff..1ff3192 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ variables: # self tests -test:commands: +test:commands1: stage: test script: - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext @@ -28,8 +28,25 @@ test:commands: - ls src/zlib - ./.ci/run.sh ./build.sh zlib - ls bin/zlib + - ls tmp/zlib - ./.ci/run.sh ./clean.sh zlib - mkdir bin/zlib - ./.ci/run.sh ./clean.sh zlib - ./.ci/run.sh ./updatesrc.sh zlib <<: *job-artifacts + +test:commands2: + stage: test + script: + - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext + zlib1g-dev libtool + - ./.ci/run.sh ./getsrc.sh curl + - ls src/curl + - ./.ci/run.sh ./build.sh curl + - ls bin/curl + - ls tmp/curl + - ./.ci/run.sh ./clean.sh curl + - mkdir bin/curl + - ./.ci/run.sh ./clean.sh curl + - ./.ci/run.sh ./updatesrc.sh curl + <<: *job-artifacts |