Skip to content

Commit 684eb01

Browse files
committed
CI: Remove afni and elastix from Debian dependencies
1 parent b3de74f commit 684eb01

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tools/ci/install_deb_dependencies.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,18 @@ set -eu
66

77
echo "INSTALL_DEB_DEPENDENCIES = $INSTALL_DEB_DEPENDENCIES"
88

9+
DEPS=(
10+
fsl
11+
# afni
12+
# elastix
13+
fsl-atlases
14+
xvfb
15+
fusefat
16+
graphviz
17+
)
18+
919
if $INSTALL_DEB_DEPENDENCIES; then
1020
bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
1121
sudo apt update
12-
sudo apt install -y -qq fsl afni elastix fsl-atlases xvfb fusefat graphviz
22+
sudo apt install -y -qq ${DEPS[@]}
1323
fi

0 commit comments

Comments
 (0)