aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-09-07 10:37:35 -0700
committerGerald Combs <gerald@wireshark.org>2022-09-07 10:37:35 -0700
commitb54219f7ada4ed1a9529d4c72ecfb3533cf25dc8 (patch)
treece0c74d5257891a16f926c8d90e72d0fce585c4d /.gitlab-ci.yml
parentb81948f534f3f7301088f9d2d528bc1c78db05b3 (diff)
GitLab CI: Update our digest algorithms.
OpenSSL 3 deprecated RIPEMD160. Remove it from our list of digest algorithms and add SHA512.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6f8139659c..fa3460810b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -194,7 +194,7 @@ Source Package:
after_script:
# - ccache --max-size $( du --summarize --block-size=1M "$CI_PROJECT_DIR/build" | awk '{printf ("%dM", $1 * 1.5)}' )
- stat --format="%n %s bytes" wireshark-*.tar.*
- - for digest in sha256 rmd160 sha1 ; do openssl $digest wireshark-*.tar.* ; done
+ - for digest in sha512 sha256 sha1 ; do openssl $digest wireshark-*.tar.* ; done
# This will break if we produce multiple tarballs, which is arguably a good thing.
- if [ -n "$S3_DESTINATION_DIST" ] ; then aws s3 cp wireshark-*.tar.* "$S3_DESTINATION_DIST/" ; fi
artifacts:
@@ -385,7 +385,7 @@ macOS Arm Package:
- cd run
- notarize-build
- stat -f "%N %z bytes" Wireshark*Arm*.dmg
- - for digest in sha256 rmd160 sha1 ; do openssl $digest Wireshark*Arm*.dmg ; done
+ - for digest in sha512 sha256 sha1 ; do openssl $digest Wireshark*Arm*.dmg ; done
- |
if [ -n "$S3_DESTINATION_MACOS_ARM64" ] ; then
aws s3 cp Wireshark?[1-9]*Arm*.dmg "$S3_DESTINATION_MACOS_ARM64/"
@@ -419,7 +419,7 @@ macOS Intel Package:
- cd run
- notarize-build
- stat -f "%N %z bytes" Wireshark*Intel*.dmg
- - for digest in sha256 rmd160 sha1 ; do openssl $digest Wireshark*Intel*.dmg ; done
+ - for digest in sha512 sha256 sha1 ; do openssl $digest Wireshark*Intel*.dmg ; done
- |
if [ -n "$S3_DESTINATION_MACOS_INTEL64" ] ; then
aws s3 cp Wireshark?[1-9]*Intel*.dmg "$S3_DESTINATION_MACOS_INTEL64/"