File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -357,14 +357,14 @@ jobs:
357357
358358 - name : Upload regression summary artifact
359359 # the annotate workflow uses this artifact to add a comment to the PR
360- uses : actions/upload-artifact@v3
360+ uses : actions/upload-artifact@v4
361361 if : ${{ github.event_name == 'pull_request' }}
362362 with :
363363 name : regression_summary
364364 path : summary.txt
365365
366366 - name : Upload Comparison Results
367- uses : actions/upload-artifact@v3
367+ uses : actions/upload-artifact@v4
368368 with :
369369 name : regression_test_comparison_results
370370 path : |
Original file line number Diff line number Diff line change 3636 activate-environment : rmg_env
3737 use-mamba : true
3838
39+ - name : Make libtiff Symlink to Avoid Runner Bug
40+ run : | # This action may need to be removed/adjusted in future runs.
41+ if [ ! -f /usr/lib/x86_64-linux-gnu/libtiff.so.5 ] && [ -f /usr/lib/x86_64-linux-gnu/libtiff.so.6 ]; then sudo ln -s /usr/lib/x86_64-linux-gnu/libtiff.so.6 /usr/lib/x86_64-linux-gnu/libtiff.so.5; fi
42+ find /usr/lib -name libtiff*
43+
3944 - name : Install sphinx
4045 run : mamba install -y sphinx
4146
Original file line number Diff line number Diff line change @@ -32,13 +32,14 @@ dependencies:
3232 - xlrd
3333 - xlwt
3434 - h5py
35- - graphviz
3635 - markupsafe
3736 - psutil
3837 # conda-forge not default, since default has a version information bug
3938 # (see https://github.com/ReactionMechanismGenerator/RMG-Py/pull/2421)
4039 - conda-forge::ncurses
4140 - conda-forge::suitesparse
41+ # see https://github.com/ReactionMechanismGenerator/RMG-Py/issues/2750
42+ - conda-forge::graphviz
4243
4344# external software tools for chemistry
4445 - coolprop
You can’t perform that action at this time.
0 commit comments