You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- hide some pointless output in a dropdown in the regression tests
- move RMS into its own conda env to avoid Sundials breaking for Cantera
- further limit size of surface RMS mechanism to avoid memory error
- explicitly pass linear solver to CVODE to avoid it not being initializated
- a typo fix
- setuptools and cython version limtiations
timeout-minutes: 120# this usually takes 20-45 minutes (or hangs for 6+ hours).
191
-
run: . install_rms.sh
198
+
run: |
199
+
conda activate rmg_env_with_rms
200
+
. install_rms.sh
192
201
193
202
- name: Set some other env vars
194
203
run: |
204
+
conda activate rmg_env_with_rms
195
205
# ensure that juliacall in Python uses the correct julia executable and packages: https://github.com/JuliaPy/PyJuliaPkg?tab=readme-ov-file#which-julia-gets-used
for regr_test in aromatics liquid_oxidation nitrogen oxidation sulfur superminimal RMS_constantVIdealGasReactor_superminimal RMS_CSTR_liquid_oxidation RMS_liquidSurface_ch4o2cat fragment RMS_constantVIdealGasReactor_fragment minimal_surface;
208
218
do
209
219
if python rmg.py test/regression/"$regr_test"/input.py; then
@@ -278,7 +288,11 @@ jobs:
278
288
env:
279
289
REFERENCE: stable_regression_results
280
290
run: |
291
+
# we _do not_ run in the with_rms env here
292
+
# conda activate rmg_env_with_rms
293
+
281
294
exec 2> >(tee -a regression.stderr >&2) 1> >(tee -a regression.stdout)
295
+
touch checkModels.log
282
296
mkdir -p "test/regression-diff"
283
297
for regr_test in aromatics liquid_oxidation nitrogen oxidation sulfur superminimal RMS_constantVIdealGasReactor_superminimal RMS_CSTR_liquid_oxidation fragment RMS_constantVIdealGasReactor_fragment minimal_surface;
0 commit comments