Skip to content

Commit 358642f

Browse files
committed
MPICH is broken, try OpenMPI
1 parent b5a65a0 commit 358642f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

dev/github-actions/setup-deps.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ log()
1414
printf "setup-deps: %s\n" "$*"
1515
}
1616

17-
apt list --installed
18-
1917
log "Installing dependencies for OS=$MATRIX_OS ..."
2018

2119
if [[ $MATRIX_OS == "ubuntu-latest" ]]
@@ -26,7 +24,12 @@ then
2624
default-jdk
2725
libcurl4-openssl-dev
2826
make
29-
mpich
27+
# MPICH is broken: 2025-05-02
28+
# https://forums.linuxmint.com/viewtopic.php?t=427785
29+
# mpich
30+
openmpi-bin
31+
openmpi-common
32+
libopenmpi-dev
3033
tcl-dev
3134
zsh
3235
)
@@ -65,6 +68,7 @@ fi
6568

6669
if (
6770
set -eux
71+
# Install!
6872
${TOOL[@]} ${PKGS[@]}
6973
) 2>&1 >> tool.log
7074
then
@@ -89,5 +93,3 @@ then
8993
)
9094
echo ${BINS[@]} | fmt -w 1 >> $GITHUB_PATH
9195
fi
92-
93-
apt list --installed

0 commit comments

Comments
 (0)