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
This commit is contained in:
Fijxu 2026-08-04 22:57:12 -04:00
parent 3383a3041f
commit 72824d181d
No known key found for this signature in database
GPG Key ID: 32C1DDF333EDA6A4

View File

@ -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-tests && make -j$(nproc)
FROM dependabot-crystal AS builder