Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,19 @@ steps:
- build/*.xml
- build/coverage*.out

- label: ":smartbear-testexecute: Run FIPS Provider tests"
key: provider-test-fips
command: ".buildkite/scripts/fips_provider_test.sh"
agents:
provider: "aws"
imagePrefix: "platform-ingest-fleet-server-aws-linux-x86-64-fleet-server-ubuntu-2204-fips"
diskSizeGb: 100
instanceType: m5.large
artifact_paths:
- build/*.xml
- build/coverage*.out


- label: ":smartbear-testexecute: Run unit tests: MacOS 13"
key: unit-test-macos-13
command: ".buildkite/scripts/unit_test.sh"
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/scripts/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ with_msft_go() {
export PATH="${PATH}:${WORKSPACE}/go/bin"
go version
which go
export PATH="${PATH}:$(go env GOPATH)/bin"
export PATH="${PATH}:$(go env GOPATH):$(go env GOPATH)/bin"
}

with_docker_compose() {
Expand Down
13 changes: 13 additions & 0 deletions .buildkite/scripts/fips_provider_test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

set -euo pipefail

source .buildkite/scripts/common.sh

add_bin_path

with_msft_go

echo "Starting the provider tests..."
FIPS=true make test-unit junit-report