Skip to content

Commit 12c094a

Browse files
authored
Merge pull request #2748 from ReactionMechanismGenerator/update_artifacts_to_v4
Update CI artifact actions to v4 and fix runner glitch
2 parents bb35064 + 1c7babe commit 12c094a

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

.github/workflows/docs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
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

environment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)