Update .gitlab-ci.yml
This commit is contained in:
parent
9e3a535859
commit
60b1a193c8
|
@ -2,12 +2,10 @@
|
||||||
# see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
|
# 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
|
# you can delete this line if you're not using Docker
|
||||||
image: busybox:latest
|
image: alpine:latest
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Before script section"
|
- apk add --no-cache zip
|
||||||
- echo "For example you might run an update here or install a build dependency"
|
|
||||||
- echo "Or perhaps you might print out some debugging details"
|
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
- echo "After script section"
|
- echo "After script section"
|
||||||
|
@ -16,9 +14,7 @@ after_script:
|
||||||
build1:
|
build1:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- ls -la
|
|
||||||
- echo "Do your build here"
|
- echo "Do your build here"
|
||||||
- zip *
|
|
||||||
|
|
||||||
test1:
|
test1:
|
||||||
stage: test
|
stage: test
|
||||||
|
|
Loading…
Reference in New Issue