Skip to content

Commit

Permalink
ci: artifacts of FIPS-enabled roachtests should be separate
Browse files Browse the repository at this point in the history
When running FIPS-enabled roachtests, we want to separate their artifacts
from other roachtests. This removes the confounding factor for performance
tests wherein FIPS may result in performance degradation.

Epic: none

Release note: None
  • Loading branch information
srosenberg committed Apr 5, 2023
1 parent ff2c4a3 commit a874f1e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/teamcity/util/roachtest_util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ function upload_stats {
# the location.
remote_artifacts_dir="artifacts"
fi
# In FIPS-mode, keep artifacts separate by using the 'fips' suffix.
if [[ ${FIPS_ENABLED:-0} == 1 ]]; then
remote_artifacts_dir="${remote_artifacts_dir}-fips"
fi

# The stats.json files need some path translation:
# ${artifacts}/path/to/test/stats.json
Expand Down

0 comments on commit a874f1e

Please sign in to comment.