[CI / FIPS] Fix env var for checks (#186565)

In #183777 review iterations `FIPS_ENABLED` was changed, but not updated
here.

`Checks` with FIPS agents enabled:
https://buildkite.com/elastic/kibana-pull-request/builds/217048#019037fd-675f-4860-839a-d5e0602a40c4/281-284
This commit is contained in:
Brad White 2024-06-24 13:38:02 -06:00 committed by GitHub
parent 9009cb8cf2
commit 8c83173e62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@ set -euo pipefail
export DISABLE_BOOTSTRAP_VALIDATION=false
.buildkite/scripts/bootstrap.sh
if [[ "${FIPS_ENABLED:-}" == "true" ]]; then
if [[ "${FTR_ENABLE_FIPS_AGENT:-}" == "true" ]]; then
.buildkite/scripts/steps/checks/verify_fips_enabled.sh
fi
.buildkite/scripts/steps/checks/saved_objects_compat_changes.sh