File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -111,14 +111,23 @@ jobs:
111
111
- name : Convert one compiler to legacy
112
112
timeout-minutes : 120
113
113
run : |
114
+ echo ::group::prepare
115
+ mkdir -p $HOME/.ssh
116
+ echo 'Host *' > $HOME/.ssh/config
117
+ echo ' ServerAliveInterval 150' >> $HOME/.ssh/config
118
+ echo ' ServerAliveCountMax 2' >> $HOME/.ssh/config
119
+ bundle exec rake spec_prep
120
+ echo ::endgroup::
114
121
primary=$(yq '.groups[].targets[] | select(.vars.role == "primary") | .uri' spec/fixtures/litmus_inventory.yaml)
115
122
compiler=$(yq '.groups[].targets[] | select(.vars.role == "compiler") | .uri' spec/fixtures/litmus_inventory.yaml | head -n 1)
123
+ echo ::group::convert_compiler_to_legacy
116
124
bundle exec bolt plan run peadm::convert_compiler_to_legacy \
117
125
--inventoryfile spec/fixtures/litmus_inventory.yaml \
118
126
--modulepath spec/fixtures/modules \
119
127
--no-host-key-check \
120
128
primary_host=$primary \
121
129
legacy_hosts=$compiler
130
+ echo ::endgroup::
122
131
- name : Upgrade PE on test cluster
123
132
timeout-minutes : 120
124
133
run : |
You can’t perform that action at this time.
0 commit comments