|
35 | 35 | strategy: |
36 | 36 | fail-fast: false |
37 | 37 | matrix: |
38 | | - architecture: [standard, large, extra-large, standard-with-dr, large-with-dr, extra-large-with-dr] |
39 | | - version: [2021.7.9, 2023.8.1, 2025.0.0] |
| 38 | + architecture: |
| 39 | + - standard |
| 40 | + # - large |
| 41 | + # - extra-large |
| 42 | + # - standard-with-dr |
| 43 | + # - large-with-dr |
| 44 | + # - extra-large-with-dr |
| 45 | + # version: [2021.7.9, 2023.8.1, 2025.0.0] |
| 46 | + version: [2025.0.0] |
40 | 47 | image: [almalinux-cloud/almalinux-8] |
41 | 48 | steps: |
42 | 49 | - name: Checkout Source |
@@ -100,14 +107,14 @@ jobs: |
100 | 107 | bundle exec bolt plan run peadm_spec::test_migration \ |
101 | 108 | --inventoryfile spec/fixtures/litmus_inventory.yaml \ |
102 | 109 | --modulepath spec/fixtures/modules \ |
103 | | - primary_host=$(yq '.groups[].targets[] | select(.vars.role == "primary") | .name' spec/fixtures/litmus_inventory.yaml) \ |
104 | | - replica_host=$(yq '.groups[].targets[] | select(.vars.role == "replica") | .name' spec/fixtures/litmus_inventory.yaml) \ |
105 | | - primary_postgresql_host=$(yq '.groups[].targets[] | select(.vars.role == "primary-pdb-postgresql") | .name' spec/fixtures/litmus_inventory.yaml) \ |
106 | | - replica_postgresql_host=$(yq '.groups[].targets[] | select(.vars.role == "replica-pdb-postgresql") | .name' spec/fixtures/litmus_inventory.yaml) \ |
107 | | - new_primary_host=$(yq '.groups[].targets[] | select(.vars.role == "new-primary") | .name' spec/fixtures/litmus_inventory.yaml) \ |
108 | | - new_replica_host=$(yq '.groups[].targets[] | select(.vars.role == "new-replica") | .name' spec/fixtures/litmus_inventory.yaml) \ |
109 | | - new_primary_postgresql_host=$(yq '.groups[].targets[] | select(.vars.role == "new-primary-pdb-postgresql") | .name' spec/fixtures/litmus_inventory.yaml) \ |
110 | | - new_replica_postgresql_host=$(yq '.groups[].targets[] | select(.vars.role == "new-replica-pdb-postgresql") | .name' spec/fixtures/litmus_inventory.yaml) \ |
| 110 | + primary_host=$(yq -r '.groups[].targets[] | select(.vars.role == "primary") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
| 111 | + replica_host=$(yq -r '.groups[].targets[] | select(.vars.role == "replica") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
| 112 | + primary_postgresql_host=$(yq -r '.groups[].targets[] | select(.vars.role == "primary-pdb-postgresql") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
| 113 | + replica_postgresql_host=$(yq -r '.groups[].targets[] | select(.vars.role == "replica-pdb-postgresql") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
| 114 | + new_primary_host=$(yq -r '.groups[].targets[] | select(.vars.role == "new-primary") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
| 115 | + new_replica_host=$(yq -r '.groups[].targets[] | select(.vars.role == "new-replica") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
| 116 | + new_primary_postgresql_host=$(yq -r '.groups[].targets[] | select(.vars.role == "new-primary-pdb-postgresql") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
| 117 | + new_replica_postgresql_host=$(yq -r '.groups[].targets[] | select(.vars.role == "new-replica-pdb-postgresql") | .name // ""' spec/fixtures/litmus_inventory.yaml) \ |
111 | 118 | --no-host-key-check |
112 | 119 | - name: Install PE on test cluster |
113 | 120 | timeout-minutes: 120 |
|
0 commit comments