2018-12-09 16:09:31 +00:00
|
|
|
stages:
|
2018-12-08 18:08:47 +00:00
|
|
|
- test
|
2018-12-20 16:56:33 +00:00
|
|
|
- build
|
2018-12-08 18:08:47 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
stage: build
|
|
|
|
image:
|
|
|
|
name: gcr.io/kaniko-project/executor:debug
|
2018-12-20 14:14:58 +00:00
|
|
|
entrypoint: [""]
|
2018-12-09 16:22:40 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
2018-12-08 18:08:47 +00:00
|
|
|
script:
|
|
|
|
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
|
2018-12-20 16:48:58 +00:00
|
|
|
# The skip-tls-verify flag is there because our registry certificate is self signed
|
|
|
|
- /kaniko/executor --context $CI_PROJECT_DIR --skip-tls-verify --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
|
2018-12-08 18:08:47 +00:00
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
|
|
|
|
|
|
|
|
test:
|
2018-12-20 16:56:33 +00:00
|
|
|
except:
|
|
|
|
- tags # Avoid running tests for tags, because they are already run for the branch
|
2018-12-09 16:22:40 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
|
|
|
image: python:3.7
|
2018-12-09 16:09:31 +00:00
|
|
|
stage: test
|
2018-12-08 18:08:47 +00:00
|
|
|
script:
|
2018-12-09 16:09:31 +00:00
|
|
|
- python setup.py test
|