big jenkinsfile update

This commit is contained in:
2025-10-12 16:49:35 -07:00
parent 320ffa8393
commit 2446f3c039
17 changed files with 148 additions and 49 deletions

View File

@ -21,8 +21,13 @@
bridge_name: "vmpbr0"
roles:
- { role: cosmos_init, when: not run_stage_two | bool and not (update_party | bool) and not (service_only | bool)}
- { role: net_bridge, when: not (run_stage_two | bool) and not (update_party | bool) and not (service_only | bool)}
- { role: vm_party, when: run_stage_two | bool or update_party | bool or service_only | bool}
- role: cosmos_init
when: not run_stage_two | bool and not (update_party | bool) and not (service_only | bool)
- role: net_bridge
when: not (run_stage_two | bool) and not (update_party | bool) and not (service_only | bool)
- role: vm_party
when: run_stage_two | bool or update_party | bool or service_only | bool
...