Skip to content

Commit cad921d

Browse files
committed
disable HERON and DOVE due to pyomo conflicts
1 parent cb8a09a commit cad921d

File tree

1 file changed

+36
-35
lines changed

1 file changed

+36
-35
lines changed

.github/workflows/github-actions.yml

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -58,32 +58,32 @@ jobs:
5858
./run_tests -j4 --raven
5959
6060
- name: Test Plugins
61-
continue-on-error: true
6261
run: |
6362
./run_tests -j4 --plugins
63+
continue-on-error: true
6464

6565
- name: Install Additional Plugins
66-
continue-on-error: true
6766
run: |
6867
pwd
6968
python3 ./scripts/install_plugins.py -s LOGOS
7069
python3 ./scripts/install_plugins.py -s HERON
7170
python3 ./scripts/install_plugins.py -s DOVE
71+
continue-on-error: true
7272

7373
- name: Reset Python Environment with Plugins Libraries
74-
continue-on-error: true
7574
run: |
7675
./scripts/establish_conda_env.sh --install
76+
continue-on-error: true
7777

7878
- name: Rebuild Raven
79-
continue-on-error: true
8079
run: |
8180
./build_raven
81+
continue-on-error: true
8282

8383
- name: Test Additional Plugins
84-
continue-on-error: true
8584
run: |
8685
./run_tests -j4 --plugins
86+
continue-on-error: true
8787

8888
Test-RAVEN-Ubuntu-22:
8989
# runs-on: ubuntu-latest
@@ -133,32 +133,32 @@ jobs:
133133
./run_tests -j4 --raven
134134
135135
- name: Test Plugins
136-
continue-on-error: true
137136
run: |
138137
./run_tests -j4 --plugins
138+
continue-on-error: true
139139

140140
- name: Install Additional Plugins
141-
continue-on-error: true
142141
run: |
143142
pwd
144143
python3 ./scripts/install_plugins.py -s LOGOS
145144
python3 ./scripts/install_plugins.py -s HERON
146145
python3 ./scripts/install_plugins.py -s DOVE
146+
continue-on-error: true
147147

148148
- name: Reset Python Environment with Plugins Libraries
149-
continue-on-error: true
150149
run: |
151150
./scripts/establish_conda_env.sh --install
151+
continue-on-error: true
152152

153153
- name: Rebuild Raven
154-
continue-on-error: true
155154
run: |
156155
./build_raven
156+
continue-on-error: true
157157

158158
- name: Test Additional Plugins
159-
continue-on-error: true
160159
run: |
161160
./run_tests -j4 --plugins
161+
continue-on-error: true
162162

163163
Test-RAVEN-macOS-latest:
164164
runs-on: macos-latest
@@ -207,32 +207,32 @@ jobs:
207207
./run_tests -j4 --raven
208208
209209
- name: Test Plugins
210-
continue-on-error: true
211210
run: |
212-
./run_tests -j4 --plugins
211+
./run_tests -j4 --plugins\
212+
continue-on-error: true
213213

214214
- name: Install Additional Plugins
215-
continue-on-error: true
216215
run: |
217216
pwd
218217
python3 ./scripts/install_plugins.py -s LOGOS
219218
python3 ./scripts/install_plugins.py -s HERON
220219
python3 ./scripts/install_plugins.py -s DOVE
220+
continue-on-error: true
221221

222222
- name: Reset Python Environment with Plugins Libraries
223-
continue-on-error: true
224223
run: |
225224
./scripts/establish_conda_env.sh --install
225+
continue-on-error: true
226226

227227
- name: Rebuild Raven
228-
continue-on-error: true
229228
run: |
230229
./build_raven
230+
continue-on-error: true
231231

232232
- name: Test Additional Plugins
233-
continue-on-error: true
234233
run: |
235234
./run_tests -j4 --plugins
235+
continue-on-error: true
236236

237237
Test-RAVEN-macOS-14:
238238
# runs-on: macos-latest
@@ -281,32 +281,31 @@ jobs:
281281
./run_tests -j4 --raven
282282
283283
- name: Test Plugins
284-
continue-on-error: true
285284
run: |
286285
./run_tests -j4 --plugins
286+
continue-on-error: true
287287

288288
- name: Install Additional Plugins
289-
continue-on-error: true
290289
run: |
291290
pwd
292291
python3 ./scripts/install_plugins.py -s LOGOS
293292
python3 ./scripts/install_plugins.py -s HERON
294293
python3 ./scripts/install_plugins.py -s DOVE
295294
296295
- name: Reset Python Environment with Plugins Libraries
297-
continue-on-error: true
298296
run: |
299297
./scripts/establish_conda_env.sh --install
298+
continue-on-error: true
300299

301300
- name: Rebuild Raven
302-
continue-on-error: true
303301
run: |
304302
./build_raven
303+
continue-on-error: true
305304

306305
- name: Test Additional Plugins
307-
continue-on-error: true
308306
run: |
309307
./run_tests -j4 --plugins
308+
continue-on-error: true
310309

311310
Test-RAVEN-Windows-Latest:
312311
runs-on: windows-latest
@@ -353,32 +352,33 @@ jobs:
353352
bash ./run_tests -j4 --raven
354353
355354
- name: Test Plugins
356-
continue-on-error: true
357355
run: |
358356
bash ./run_tests -j4 --plugins
357+
continue-on-error: true
359358

360359
- name: Install Additional Plugins
361-
continue-on-error: true
362360
run: |
363361
pwd
364362
python3 ./scripts/install_plugins.py -s LOGOS
365-
python3 ./scripts/install_plugins.py -s HERON
366-
python3 ./scripts/install_plugins.py -s DOVE
363+
# Failed due to pyomo = 6.4
364+
# python3 ./scripts/install_plugins.py -s HERON
365+
# python3 ./scripts/install_plugins.py -s DOVE
366+
continue-on-error: true
367367

368368
- name: Reset Python Environment with Plugins Libraries
369-
continue-on-error: true
370369
run: |
371370
bash ./scripts/establish_conda_env.sh --install --conda-defs $HOME/miniconda3/etc/profile.d/conda.sh
371+
continue-on-error: true
372372

373373
- name: Rebuild Raven
374-
continue-on-error: true
375374
run: |
376375
bash ./build_raven
376+
continue-on-error: true
377377

378378
- name: Test Additional Plugins
379-
continue-on-error: true
380379
run: |
381380
bash ./run_tests -j4 --plugins
381+
continue-on-error: true
382382

383383
Test-RAVEN-Windows-2022:
384384
runs-on: windows-2022
@@ -425,29 +425,30 @@ jobs:
425425
bash ./run_tests -j4 --raven
426426
427427
- name: Test Plugins
428-
continue-on-error: true
429428
run: |
430429
bash ./run_tests -j4 --plugins
430+
continue-on-error: true
431431

432432
- name: Install Additional Plugins
433-
continue-on-error: true
434433
run: |
435434
pwd
436435
python3 ./scripts/install_plugins.py -s LOGOS
437-
python3 ./scripts/install_plugins.py -s HERON
438-
python3 ./scripts/install_plugins.py -s DOVE
436+
# Failed due to pyomo = 6.4
437+
# python3 ./scripts/install_plugins.py -s HERON
438+
# python3 ./scripts/install_plugins.py -s DOVE
439+
continue-on-error: true
439440

440441
- name: Reset Python Environment with Plugins Libraries
441-
continue-on-error: true
442442
run: |
443443
bash ./scripts/establish_conda_env.sh --install --conda-defs $HOME/miniconda3/etc/profile.d/conda.sh
444+
continue-on-error: true
444445

445446
- name: Rebuild Raven
446-
continue-on-error: true
447447
run: |
448448
bash ./build_raven
449+
continue-on-error: true
449450

450451
- name: Test Additional Plugins
451-
continue-on-error: true
452452
run: |
453453
bash ./run_tests -j4 --plugins
454+
continue-on-error: true

0 commit comments

Comments
 (0)