summaryrefslogtreecommitdiffstats
path: root/.gitlab
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-02-25 17:06:31 (GMT)
committerBrad King <brad.king@kitware.com>2022-02-25 17:07:21 (GMT)
commit46da86dcd9529e4ee729fa79f189dd73b081ab0d (patch)
treeb4f5ed32237e6fe9ce440026bf925693f92423c3 /.gitlab
parent0883ab385a8d15075cab99a265a20131a37b506d (diff)
downloadCMake-46da86dcd9529e4ee729fa79f189dd73b081ab0d.zip
CMake-46da86dcd9529e4ee729fa79f189dd73b081ab0d.tar.gz
CMake-46da86dcd9529e4ee729fa79f189dd73b081ab0d.tar.bz2
ci: Verify content of ironpython package in Debian base image
Also clean up more temporary files.
Diffstat (limited to '.gitlab')
-rwxr-xr-x.gitlab/ci/docker/debian10/install_deps.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab/ci/docker/debian10/install_deps.sh b/.gitlab/ci/docker/debian10/install_deps.sh
index 12a91e6..9dcbb30 100755
--- a/.gitlab/ci/docker/debian10/install_deps.sh
+++ b/.gitlab/ci/docker/debian10/install_deps.sh
@@ -87,14 +87,16 @@ apt-get install -y \
apt-get install -y \
libmono-system-windows-forms4.0-cil
curl -L -O https://github.com/IronLanguages/ironpython2/releases/download/ipy-2.7.10/ironpython_2.7.10.deb
+echo 'e1aceec1d49ffa66e9059a52168a734999dcccc50164a60e2936649cae698f3e ironpython_2.7.10.deb' > ironpython.sha256sum
+sha256sum --check ironpython.sha256sum
dpkg -i ironpython_2.7.10.deb
-rm ironpython_2.7.10.deb
+rm ironpython_2.7.10.deb ironpython.sha256sum
# Perforce
curl -L -O https://www.perforce.com/downloads/perforce/r21.2/bin.linux26x86_64/helix-core-server.tgz
echo '72620c55e9389705582506d6f3388005fb4f674888a00a12a51edc2ae37823b3 helix-core-server.tgz' > helix.sha256sum
sha256sum --check helix.sha256sum
tar -C /usr/local/bin -xvzf helix-core-server.tgz -- p4 p4d
-rm helix-core-server.tgz
+rm helix-core-server.tgz helix.sha256sum
apt-get clean