From 0460189a92e312f418dff75476a8e9886809a1be Mon Sep 17 00:00:00 2001 From: Fijxu Date: Wed, 5 Aug 2026 04:19:12 -0400 Subject: [PATCH] CI: Do not build OpenSSL tests and apps (#5897) * CI: Do not build OpenSSL tests OpenSSL compiles tests by default, making the CI and compilation of Invidious take a long time for no real benefit, so it's better to disable them ;) https://github.com/openssl/openssl/blob/master/INSTALL.md#no-tests * Use no-apps instead, as they also disable tests --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 60661d1b..e956415f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -18,7 +18,7 @@ RUN curl -Ls "https://github.com/openssl/openssl/releases/download/openssl-${OPE RUN echo "${OPENSSL_SHA256} openssl-${OPENSSL_VERSION}.tar.gz" | sha256sum -c RUN tar -xzvf openssl-${OPENSSL_VERSION}.tar.gz -RUN cd openssl-${OPENSSL_VERSION} && ./Configure --openssldir=/etc/ssl && make -j$(nproc) +RUN cd openssl-${OPENSSL_VERSION} && ./Configure --openssldir=/etc/ssl no-apps && make -j$(nproc) FROM dependabot-crystal AS builder