We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5a65a0 commit 358642fCopy full SHA for 358642f
dev/github-actions/setup-deps.sh
@@ -14,8 +14,6 @@ log()
14
printf "setup-deps: %s\n" "$*"
15
}
16
17
-apt list --installed
18
-
19
log "Installing dependencies for OS=$MATRIX_OS ..."
20
21
if [[ $MATRIX_OS == "ubuntu-latest" ]]
@@ -26,7 +24,12 @@ then
26
24
default-jdk
27
25
libcurl4-openssl-dev
28
make
29
- mpich
+ # MPICH is broken: 2025-05-02
+ # https://forums.linuxmint.com/viewtopic.php?t=427785
+ # mpich
30
+ openmpi-bin
31
+ openmpi-common
32
+ libopenmpi-dev
33
tcl-dev
34
zsh
35
)
@@ -65,6 +68,7 @@ fi
65
68
66
69
if (
67
70
set -eux
71
+ # Install!
72
${TOOL[@]} ${PKGS[@]}
73
) 2>&1 >> tool.log
74
then
@@ -89,5 +93,3 @@ then
89
93
90
94
echo ${BINS[@]} | fmt -w 1 >> $GITHUB_PATH
91
95
fi
92
0 commit comments