Skip to content
Snippets Groups Projects

Resolve "Update deprecated deploy job"

Merged Iñigo Moreno i Caireta requested to merge 38-update-deprecated-deploy-job into master
Compare and
7 files
+ 53
101
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -34,8 +34,6 @@ industrial_ci_kinetic:
@@ -34,8 +34,6 @@ industrial_ci_kinetic:
variables:
variables:
ROS_DISTRO: kinetic
ROS_DISTRO: kinetic
rules:
rules:
- if: $DEPLOY
when: never
- if: $DEFAULT_DISTRO == "kinetic"
- if: $DEFAULT_DISTRO == "kinetic"
- if: $BUILD_KINETIC
- if: $BUILD_KINETIC
@@ -44,8 +42,6 @@ industrial_ci_melodic:
@@ -44,8 +42,6 @@ industrial_ci_melodic:
variables:
variables:
ROS_DISTRO: melodic
ROS_DISTRO: melodic
rules:
rules:
- if: $DEPLOY
when: never
- if: $DEFAULT_DISTRO == "melodic"
- if: $DEFAULT_DISTRO == "melodic"
- if: $BUILD_MELODIC
- if: $BUILD_MELODIC
@@ -54,32 +50,36 @@ industrial_ci_noetic:
@@ -54,32 +50,36 @@ industrial_ci_noetic:
variables:
variables:
ROS_DISTRO: noetic
ROS_DISTRO: noetic
rules:
rules:
- if: $DEPLOY
when: never
- if: $DEFAULT_DISTRO == "noetic"
- if: $DEFAULT_DISTRO == "noetic"
- if: $BUILD_NOETIC
- if: $BUILD_NOETIC
industrial_kinetic_deploy:
ddeploy_kinetic:
extends:
extends: .ddeploy
- industrial_ci_kinetic
- .industrial_ci_deploy
rules:
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "kinetic"
- if: $DEPLOY && $DEFAULT_DISTRO == "kinetic"
 
exists:
 
- ddeploy.yaml
- if: $DEPLOY && $BUILD_KINETIC
- if: $DEPLOY && $BUILD_KINETIC
 
exists:
 
- ddeploy.yaml
industrial_melodic_deploy:
ddeploy_melodic:
extends:
extends: .ddeploy
- industrial_ci_melodic
- .industrial_ci_deploy
rules:
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "melodic"
- if: $DEPLOY && $DEFAULT_DISTRO == "melodic"
 
exists:
 
- ddeploy.yaml
- if: $DEPLOY && $BUILD_MELODIC
- if: $DEPLOY && $BUILD_MELODIC
 
exists:
 
- ddeploy.yaml
industrial_noetic_deploy:
ddeploy_noetic:
extends:
extends: .ddeploy
- industrial_ci_noetic
- .industrial_ci_deploy
rules:
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "noetic"
- if: $DEPLOY && $DEFAULT_DISTRO == "noetic"
 
exists:
 
- ddeploy.yaml
- if: $DEPLOY && $BUILD_NOETIC
- if: $DEPLOY && $BUILD_NOETIC
 
exists:
 
- ddeploy.yaml
Loading