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
+ 67
107
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -34,8 +34,6 @@ industrial_ci_kinetic:
variables:
ROS_DISTRO: kinetic
rules:
- if: $DEPLOY
when: never
- if: $DEFAULT_DISTRO == "kinetic"
- if: $BUILD_KINETIC
@@ -44,8 +42,6 @@ industrial_ci_melodic:
variables:
ROS_DISTRO: melodic
rules:
- if: $DEPLOY
when: never
- if: $DEFAULT_DISTRO == "melodic"
- if: $BUILD_MELODIC
@@ -54,32 +50,42 @@ industrial_ci_noetic:
variables:
ROS_DISTRO: noetic
rules:
- if: $DEPLOY
when: never
- if: $DEFAULT_DISTRO == "noetic"
- if: $BUILD_NOETIC
industrial_kinetic_deploy:
extends:
- industrial_ci_kinetic
- .industrial_ci_deploy
ddeploy_kinetic:
extends: .ddeploy
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "kinetic"
- if: $DEPLOY && $BUILD_KINETIC
- if: $DEPLOY && ($DEFAULT_DISTRO == "kinetic" || $BUILD_KINETIC)
exists:
- ddeploy.yaml
- if: $DEFAULT_DISTRO == "kinetic" || $BUILD_KINETIC
exists:
- ddeploy.yaml
when: manual
allow_failure: true
industrial_melodic_deploy:
extends:
- industrial_ci_melodic
- .industrial_ci_deploy
ddeploy_melodic:
extends: .ddeploy
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "melodic"
- if: $DEPLOY && $BUILD_MELODIC
- if: $DEPLOY && ($DEFAULT_DISTRO == "melodic" || $BUILD_MELODIC)
exists:
- ddeploy.yaml
- if: $DEFAULT_DISTRO == "melodic" || $BUILD_MELODIC
exists:
- ddeploy.yaml
when: manual
allow_failure: true
industrial_noetic_deploy:
extends:
- industrial_ci_noetic
- .industrial_ci_deploy
ddeploy_noetic:
extends: .ddeploy
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "noetic"
- if: $DEPLOY && $BUILD_NOETIC
- if: $DEPLOY && ($DEFAULT_DISTRO == "noetic" || $BUILD_NOETIC)
exists:
- ddeploy.yaml
- if: $DEFAULT_DISTRO == "noetic" || $BUILD_NOETIC
exists:
- ddeploy.yaml
when: manual
allow_failure: true
Loading