diff options
author | Tomek Mrugalski <tomasz@isc.org> | 2019-02-26 20:24:36 +0100 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2019-03-06 15:15:28 +0100 |
commit | 5d528691d73c88afa19e02d440526e12afab3841 (patch) | |
tree | 6baa27109b6e99ca76641d28c527a780bcdd6292 /.gitlab-ci.yml | |
parent | apt changed to apt-get (diff) | |
download | kea-5d528691d73c88afa19e02d440526e12afab3841.tar.xz kea-5d528691d73c88afa19e02d440526e12afab3841.zip |
gitlab-ci simplified
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 069eec1e09..a7db392593 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,19 +9,13 @@ variables: CI_REGISTRY_IMAGE: registry.gitlab.isc.org/isc-projects/images/bind9 stages: - - setup - test -ci-setup: - stage: setup - image: "$CI_REGISTRY_IMAGE:debian-stretch-amd64" - script: - - cat /etc/debian_version - - sudo apt-get -y install shellcheck - shellcheck: stage: test image: "$CI_REGISTRY_IMAGE:debian-stretch-amd64" + before_script: + - sudo apt-get -y install shellcheck script: - SCRIPTS="src/bin/keactrl/keactrl.in src/bin/admin/kea-admin.in src/bin/admin/admin-utils.sh" - shellcheck ${SCRIPTS} |