Skip to content

Commit

Permalink
fixup ci
Browse files Browse the repository at this point in the history
  • Loading branch information
matzf committed Dec 15, 2023
1 parent 85444ed commit 701c69c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ steps:
- wait
- group: "End to End"
key: e2e
concurrency_group: "${BUILDKITE_PIPELINE_ID}/${BUILDKITE_BUILD_NUMBER}"
concurrency: 3
steps:
- label: "E2E: default :man_in_business_suit_levitating: (scion, ping)"
command:
Expand Down Expand Up @@ -135,6 +133,8 @@ steps:
timeout_in_minutes: 15
key: e2e_integration_tests_v2
retry: *automatic-retry
concurrency_group: "${BUILDKITE_PIPELINE_ID}/${BUILDKITE_BUILD_NUMBER}"
concurrency: 3
- label: "E2E: failing links :man_in_business_suit_levitating:"
command:
- echo "--- build"
Expand All @@ -150,6 +150,8 @@ steps:
timeout_in_minutes: 15
key: e2e_revocation_test_v2
retry: *automatic-retry
concurrency_group: "${BUILDKITE_PIPELINE_ID}/${BUILDKITE_BUILD_NUMBER}"
concurrency: 3
- label: "E2E: default :docker: (ping)"
command:
- echo "--- build"
Expand All @@ -165,3 +167,5 @@ steps:
timeout_in_minutes: 15
key: docker_integration_e2e_default
retry: *automatic-retry
concurrency_group: "${BUILDKITE_PIPELINE_ID}/${BUILDKITE_BUILD_NUMBER}"
concurrency: 3
4 changes: 2 additions & 2 deletions .buildkite/pipeline_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ gen_bazel_test_steps() {
parallel="${PARALLELISM:-1}"
echo " - group: \"Integration Tests :bazel:\""
echo " key: integration-tests"
echo " concurrency_group: \"\${BUILDKITE_PIPELINE_ID}/\${BUILDKITE_BUILD_NUMBER}\""
echo " concurrency: 3"
echo " steps:"

targets="$(bazel query "attr(tags, integration, tests(//...)) except attr(tags, \"lint|manual\", tests(//...))" 2>/dev/null)"
Expand Down Expand Up @@ -58,5 +56,7 @@ gen_bazel_test_steps() {
echo " automatic:"
echo " - exit_status: -1 # Agent was lost"
echo " - exit_status: 255 # Forced agent shutdown"
echo " concurrency_group: \"\${BUILDKITE_PIPELINE_ID}/\${BUILDKITE_BUILD_NUMBER}\""
echo " concurrency: 3"
done
}

0 comments on commit 701c69c

Please sign in to comment.