Skip to content

Commit 12587cc

Browse files
add --compressed to curl gpg keys command (#495)
1 parent e2e70a0 commit 12587cc

File tree

41 files changed

+41
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+41
-41
lines changed

nightly-6.1/centos/7/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN set -e; \
3131
&& export GNUPGHOME="$(mktemp -d)" \
3232
&& curl -fsSL ${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
3333
${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download_signature} -o latest_toolchain.tar.gz.sig \
34-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
34+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
3535
&& gpg --batch --verify latest_toolchain.tar.gz.sig latest_toolchain.tar.gz \
3636
# - Unpack the toolchain, set libs permissions, and clean up.
3737
&& tar -xzf latest_toolchain.tar.gz --directory / --strip-components=1 \

nightly-6.2/amazonlinux/2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ RUN set -e; \
5353
&& export GNUPGHOME="$(mktemp -d)" \
5454
&& curl -fsSL ${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
5555
${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download_signature} -o latest_toolchain.tar.gz.sig \
56-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
56+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
5757
&& gpg --batch --verify latest_toolchain.tar.gz.sig latest_toolchain.tar.gz \
5858
# - Unpack the toolchain, set libs permissions, and clean up.
5959
&& tar -xzf latest_toolchain.tar.gz --directory / --strip-components=1 \

nightly-6.2/amazonlinux/2/buildx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RUN set -e; \
5959
&& export GNUPGHOME="$(mktemp -d)" \
6060
&& curl -fsSL ${PLATFORM_WEBROOT}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
6161
${PLATFORM_WEBROOT}/${DOWNLOAD_DIR}/${download_signature} -o latest_toolchain.tar.gz.sig \
62-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
62+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
6363
&& gpg --batch --verify latest_toolchain.tar.gz.sig latest_toolchain.tar.gz \
6464
# - Unpack the toolchain, set libs permissions, and clean up.
6565
&& tar -xzf latest_toolchain.tar.gz --directory / --strip-components=1 \

nightly-6.2/amazonlinux/2/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN set -e; \
3131
&& export GNUPGHOME="$(mktemp -d)" \
3232
&& curl -fsSL ${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
3333
${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download_signature} -o latest_toolchain.tar.gz.sig \
34-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
34+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
3535
&& gpg --batch --verify latest_toolchain.tar.gz.sig latest_toolchain.tar.gz \
3636
# - Unpack the toolchain, set libs permissions, and clean up.
3737
&& yum -y install tar gzip \

nightly-6.2/centos/7/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN set -e; \
3131
&& export GNUPGHOME="$(mktemp -d)" \
3232
&& curl -fsSL ${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
3333
${SWIFT_WEBROOT}/${DOWNLOAD_DIR}/${download_signature} -o latest_toolchain.tar.gz.sig \
34-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
34+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
3535
&& gpg --batch --verify latest_toolchain.tar.gz.sig latest_toolchain.tar.gz \
3636
# - Unpack the toolchain, set libs permissions, and clean up.
3737
&& tar -xzf latest_toolchain.tar.gz --directory / --strip-components=1 \

nightly-6.2/debian/12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN set -e; \
5656
&& export GNUPGHOME="$(mktemp -d)" \
5757
&& curl -fsSL ${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
5858
${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz.sig \
59-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
59+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
6060
# - Unpack the toolchain, set libs permissions, and clean up.
6161
&& mkdir -p $SWIFT_PREFIX \
6262
&& tar -xzf latest_toolchain.tar.gz --directory $SWIFT_PREFIX --strip-components=1 \

nightly-6.2/debian/12/buildx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ RUN set -e; \
6666
&& export GNUPGHOME="$(mktemp -d)" \
6767
&& curl -fsSL ${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
6868
${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz.sig \
69-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
69+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
7070
# - Unpack the toolchain, set libs permissions, and clean up.
7171
&& mkdir -p $SWIFT_PREFIX \
7272
&& tar -xzf latest_toolchain.tar.gz --directory $SWIFT_PREFIX --strip-components=1 \

nightly-6.2/fedora/39/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ RUN set -e; \
5858
&& export GNUPGHOME="$(mktemp -d)" \
5959
&& curl -fsSL ${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
6060
${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz.sig \
61-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
61+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
6262
# - Unpack the toolchain, set libs permissions, and clean up.
6363
&& mkdir -p $SWIFT_PREFIX \
6464
&& tar -xzf latest_toolchain.tar.gz --directory $SWIFT_PREFIX --strip-components=1 \

nightly-6.2/fedora/39/buildx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ RUN set -e; \
6868
&& export GNUPGHOME="$(mktemp -d)" \
6969
&& curl -fsSL ${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
7070
${SWIFT_WEBROOT}${OS_ARCH_SUFFIX}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz.sig \
71-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
71+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
7272
# - Unpack the toolchain, set libs permissions, and clean up.
7373
&& mkdir -p $SWIFT_PREFIX \
7474
&& tar -xzf latest_toolchain.tar.gz --directory $SWIFT_PREFIX --strip-components=1 \

nightly-6.2/rhel-ubi/9/buildx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN set -e; \
5252
&& export GNUPGHOME="$(mktemp -d)" \
5353
&& curl -fsSL ${PLATFORM_WEBROOT}/${DOWNLOAD_DIR}/${download} -o latest_toolchain.tar.gz \
5454
${PLATFORM_WEBROOT}/${DOWNLOAD_DIR}/${download_signature} -o latest_toolchain.tar.gz.sig \
55-
&& curl -fSsL https://swift.org/keys/all-keys.asc | gpg --import - \
55+
&& curl -fSsL --compressed https://swift.org/keys/all-keys.asc | gpg --import - \
5656
&& gpg --batch --verify latest_toolchain.tar.gz.sig latest_toolchain.tar.gz \
5757
# - Unpack the toolchain, set libs permissions, and clean up.
5858
&& tar -xzf latest_toolchain.tar.gz --directory / --strip-components=1 \

0 commit comments

Comments
 (0)