Skip to content
Snippets Groups Projects
Commit 8902beeb authored by Iñigo Moreno i Caireta's avatar Iñigo Moreno i Caireta
Browse files

Update rules of ddeploy to add manual job

parent b9f2b05a
No related branches found
No related tags found
1 merge request!70Resolve "Update deprecated deploy job"
Pipeline #58773 passed
......@@ -57,29 +57,32 @@ industrial_ci_noetic:
ddeploy_kinetic:
extends: .ddeploy
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "kinetic"
- if: $DEPLOY && ($DEFAULT_DISTRO == "kinetic" || $BUILD_KINETIC)
exists:
- ddeploy.yaml
- if: $DEPLOY && $BUILD_KINETIC
- if: $DEFAULT_DISTRO == "kinetic" || $BUILD_KINETIC
exists:
- ddeploy.yaml
when: manual
ddeploy_melodic:
extends: .ddeploy
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "melodic"
- if: $DEPLOY && ($DEFAULT_DISTRO == "melodic" || $BUILD_MELODIC)
exists:
- ddeploy.yaml
- if: $DEPLOY && $BUILD_MELODIC
- if: $DEFAULT_DISTRO == "melodic" || $BUILD_MELODIC
exists:
- ddeploy.yaml
when: manual
ddeploy_noetic:
extends: .ddeploy
rules:
- if: $DEPLOY && $DEFAULT_DISTRO == "noetic"
- if: $DEPLOY && ($DEFAULT_DISTRO == "noetic" || $BUILD_NOETIC)
exists:
- ddeploy.yaml
- if: $DEPLOY && $BUILD_NOETIC
- if: $DEFAULT_DISTRO == "noetic" || $BUILD_NOETIC
exists:
- ddeploy.yaml
when: manual
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment