[vlc-commits] [Git][videolan/vlc][master] CI: do not print tar filenames

Hugo Beauzée-Luyssen (@chouquette) gitlab at videolan.org
Wed Nov 10 17:44:03 UTC 2021



Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC


Commits:
5a1a350c by Marvin Scholz at 2021-11-10T15:41:19+00:00
CI: do not print tar filenames

Redirect tar output to /dev/null as we only care about the exit code
here, not what it prints to stdout.

- - - - -


1 changed file:

- extras/ci/gitlab-ci.yml


Changes:

=====================================
extras/ci/gitlab-ci.yml
=====================================
@@ -10,7 +10,7 @@ default:
     after_script:
         - export VLC_CONTRIB_SHA="$(extras/ci/get-contrib-sha.sh)"
         - mv contrib/vlc-contrib-*.tar.bz2 contrib/vlc-contrib-${TRIPLET}-${VLC_CONTRIB_SHA}.tar.bz2 2>/dev/null || true
-        - cd contrib && find . -maxdepth 1 -type f -name "vlc-contrib-*-${VLC_CONTRIB_SHA}.tar.bz2" -exec sh -c 'tar tvf "$0" && shasum -a 512 "$0" | tee SHA512SUM' "{}" \;
+        - cd contrib && find . -maxdepth 1 -type f -name "vlc-contrib-*-${VLC_CONTRIB_SHA}.tar.bz2" -exec sh -c 'tar tf "$0" > /dev/null && shasum -a 512 "$0" | tee SHA512SUM' "{}" \;
     interruptible: true
 
 variables:



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/5a1a350cce77939d6404bfac14b50fef6941e800

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/5a1a350cce77939d6404bfac14b50fef6941e800
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list