Skip to content

Commit

Permalink
[CI / FIPS] Fix env var for checks (#186565)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Ikuni17 authored Jun 24, 2024
1 parent 9009cb8 commit 8c83173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/scripts/steps/checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8c83173

Please sign in to comment.