Change CI to include `make push`

This replaces the makes for each python version with a simple `make push`.
It will also add a "main image" for each version, i.e. `gsiupm/senpy:1.0.0` in
addition to `gsiupm/senpy:1.0.0-python2.7` and `gsiupm/senpy:1.0.0-python3.5`.
57-refactor-conversion
J. Fernando Sánchez 6 years ago
parent 748d1a00bd
commit c8f6f5613d

@ -31,29 +31,19 @@ test-2.7:
variables: variables:
PYTHON_VERSION: "2.7" PYTHON_VERSION: "2.7"
.image: &image_definition push:
stage: push stage: push
script: script:
- make -e push-$PYTHON_VERSION - make -e push
only: only:
- tags - tags
- triggers - triggers
- fix-makefiles - fix-makefiles
push-3.5:
<<: *image_definition
variables:
PYTHON_VERSION: "3.5"
push-2.7:
<<: *image_definition
variables:
PYTHON_VERSION: "2.7"
push-latest: push-latest:
<<: *image_definition stage: push
variables: script:
PYTHON_VERSION: latest - make -e push-latest
only: only:
- master - master
- triggers - triggers

Loading…
Cancel
Save