Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflows: tag cockroach builds for integration tests #120715

Merged
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions build/github/acceptance-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -euxo pipefail

bazel build --config crosslinux //pkg/cmd/cockroach-short \
--bes_keywords integration-test-artifact-build \
--jobs 100 $(./build/github/engflow-args.sh)

ARTIFACTSDIR=$PWD/artifacts
Expand Down
5 changes: 4 additions & 1 deletion build/github/examples-orms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
set -euxo pipefail

pushd cockroach
bazel build //pkg/cmd/cockroach-short --config crosslinux --jobs 100 $(./build/github/engflow-args.sh)
bazel build //pkg/cmd/cockroach-short \
--config crosslinux --jobs 100 \
--bes_keywords integration-test-artifact-build \
$(./build/github/engflow-args.sh)
cp _bazel/bin/pkg/cmd/cockroach-short/cockroach-short_/cockroach-short ../examples-orms/cockroach
# We need Go in the `PATH`.
export PATH=$(dirname $(bazel run @go_sdk//:bin/go --run_under=realpath)):$PATH
Expand Down
1 change: 1 addition & 0 deletions build/github/local-roachtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export COCKROACH_DEV_LICENSE=$(gcloud secrets versions access 1 --secret=cockroa
set -x

bazel build --config=$CROSSCONFIG $(./build/github/engflow-args.sh) \
--bes_keywords integration-test-artifact-build \
--jobs 100 \
//pkg/cmd/cockroach-short \
//pkg/cmd/roachtest \
Expand Down
Loading