From c65a0e03c47b4420797ab4a723c586d0f0b99066 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Tue, 24 Dec 2024 05:48:02 -0600 Subject: [PATCH] doc: ensure getting_started has bootstrap list output in correct place (#48281) --- lib/spack/docs/getting_started.rst | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/spack/docs/getting_started.rst b/lib/spack/docs/getting_started.rst index 2569657c9f1..696431fc74c 100644 --- a/lib/spack/docs/getting_started.rst +++ b/lib/spack/docs/getting_started.rst @@ -148,20 +148,22 @@ The first time you concretize a spec, Spack will bootstrap automatically: -------------------------------- zlib@1.2.13%gcc@9.4.0+optimize+pic+shared build_system=makefile arch=linux-ubuntu20.04-icelake +The default bootstrap behavior is to use pre-built binaries. You can verify the +active bootstrap repositories with: + +.. command-output:: spack bootstrap list + If for security concerns you cannot bootstrap ``clingo`` from pre-built binaries, you have to disable fetching the binaries we generated with Github Actions. .. code-block:: console - $ spack bootstrap disable github-actions-v0.4 - ==> "github-actions-v0.4" is now disabled and will not be used for bootstrapping - $ spack bootstrap disable github-actions-v0.3 - ==> "github-actions-v0.3" is now disabled and will not be used for bootstrapping - -You can verify that the new settings are effective with: - -.. command-output:: spack bootstrap list + $ spack bootstrap disable github-actions-v0.6 + ==> "github-actions-v0.6" is now disabled and will not be used for bootstrapping + $ spack bootstrap disable github-actions-v0.5 + ==> "github-actions-v0.5" is now disabled and will not be used for bootstrapping +You can verify that the new settings are effective with ``spack bootstrap list``. .. note::