From 60b1a193c8f0fe24b0485a64f6ad1236bd6eda0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Tue, 21 May 2019 23:56:15 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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