From ff88545e02ab48a52952350c52013cf765455dd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Kotal?= Date: Thu, 15 Jun 2023 10:02:57 +0200 Subject: [PATCH] Allow to disable apps building with no-apps Reviewed-by: Matt Caswell Reviewed-by: Tom Cosgrove Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/21212) --- .github/workflows/run-checker-daily.yml | 1 + Configure | 1 + INSTALL.md | 5 +++++ 3 files changed, 7 insertions(+) diff --git a/.github/workflows/run-checker-daily.yml b/.github/workflows/run-checker-daily.yml index 6d6d86e7e6749..db1f3dfbcba4d 100644 --- a/.github/workflows/run-checker-daily.yml +++ b/.github/workflows/run-checker-daily.yml @@ -22,6 +22,7 @@ jobs: opt: [ 386, no-afalgeng, + no-apps, no-aria, no-asan, no-asm, diff --git a/Configure b/Configure index ba9ef7662c5d3..fbafe2b1035f6 100755 --- a/Configure +++ b/Configure @@ -408,6 +408,7 @@ my @dtls = qw(dtls1 dtls1_2); my @disablables = ( "acvp-tests", "afalgeng", + "apps", "argon2", "aria", "asan", diff --git a/INSTALL.md b/INSTALL.md index 54c020fb457aa..a5747aaec7ad9 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -583,6 +583,11 @@ access to algorithm internals that are not normally accessible. Additional information related to ACVP can be found at . +### no-apps + +Do not build apps, e.g. the openssl program. This is handy for minimization. +This option also disables tests. + ### no-asm Do not use assembler code.