Move long running jobs into separate CI stage (#5837)
parent
a8a05a21a4
commit
e03aa795fa
|
@ -4,6 +4,7 @@ stages:
|
|||
- deploy-part1
|
||||
- moderator
|
||||
- deploy-part2
|
||||
- deploy-part3
|
||||
- deploy-special
|
||||
|
||||
variables:
|
||||
|
|
|
@ -78,13 +78,6 @@ packet_debian9-macvlan-sep:
|
|||
extends: .packet
|
||||
when: manual
|
||||
|
||||
packet_debian9-calico-upgrade:
|
||||
stage: deploy-part2
|
||||
extends: .packet
|
||||
when: on_success
|
||||
variables:
|
||||
UPGRADE_TEST: graceful
|
||||
|
||||
packet_debian9-calico-upgrade-once:
|
||||
stage: deploy-part2
|
||||
extends: .packet
|
||||
|
@ -142,8 +135,18 @@ packet_amazon-linux-2-aio:
|
|||
extends: .packet
|
||||
when: manual
|
||||
|
||||
# ### PR JOBS PART3
|
||||
# Long jobs (45min+)
|
||||
|
||||
packet_debian9-calico-upgrade:
|
||||
stage: deploy-part3
|
||||
extends: .packet
|
||||
when: on_success
|
||||
variables:
|
||||
UPGRADE_TEST: graceful
|
||||
|
||||
packet_ubuntu18-calico-ha-recover:
|
||||
stage: deploy-part2
|
||||
stage: deploy-part3
|
||||
extends: .packet
|
||||
when: on_success
|
||||
variables:
|
||||
|
@ -151,7 +154,7 @@ packet_ubuntu18-calico-ha-recover:
|
|||
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:],kube-master[1:]"
|
||||
|
||||
packet_ubuntu18-calico-ha-recover-noquorum:
|
||||
stage: deploy-part2
|
||||
stage: deploy-part3
|
||||
extends: .packet
|
||||
when: on_success
|
||||
variables:
|
||||
|
|
Loading…
Reference in New Issue