diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a69d3e7..56a0b8b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,12 +2,10 @@ # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options # you can delete this line if you're not using Docker -image: busybox:latest +image: alpine:latest before_script: - - echo "Before script section" - - echo "For example you might run an update here or install a build dependency" - - echo "Or perhaps you might print out some debugging details" + - apk add --no-cache zip after_script: - echo "After script section" @@ -16,9 +14,7 @@ after_script: build1: stage: build script: - - ls -la - echo "Do your build here" - - zip * test1: stage: test