mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-10 19:12:28 +00:00
65 lines
1.0 KiB
YAML
65 lines
1.0 KiB
YAML
image: gsiupm/dockermake:latest
|
|
|
|
|
|
# When using dind, it's wise to use the overlayfs driver for
|
|
# improved performance.
|
|
variables:
|
|
DOCKER_DRIVER: overlay
|
|
DOCKERFILE: Dockerfile
|
|
IMAGENAME: $CI_REGISTRY_IMAGE
|
|
|
|
stages:
|
|
- test
|
|
- push
|
|
- clean
|
|
|
|
.test: &test_definition
|
|
stage: test
|
|
script:
|
|
- make -e test-$PYTHON_VERSION
|
|
|
|
test-3.5:
|
|
<<: *test_definition
|
|
variables:
|
|
PYTHON_VERSION: "3.5"
|
|
|
|
test-2.7:
|
|
<<: *test_definition
|
|
variables:
|
|
PYTHON_VERSION: "2.7"
|
|
|
|
|
|
.image: &image_definition
|
|
stage: push
|
|
before_script:
|
|
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN $CI_REGISTRY
|
|
script:
|
|
- make -e push-$PYTHON_VERSION
|
|
only:
|
|
- tags
|
|
- triggers
|
|
|
|
push-3.5:
|
|
<<: *image_definition
|
|
variables:
|
|
PYTHON_VERSION: "3.5"
|
|
|
|
push-2.7:
|
|
<<: *image_definition
|
|
variables:
|
|
PYTHON_VERSION: "2.7"
|
|
|
|
push-latest:
|
|
<<: *image_definition
|
|
variables:
|
|
PYTHON_VERSION: latest
|
|
only:
|
|
- master
|
|
- triggers
|
|
|
|
clean :
|
|
stage: clean
|
|
script:
|
|
- make -e clean
|
|
only:
|
|
- master |