Skip to content

Commit

Permalink
Merge pull request #3934 from gousteris/backport-pre-command-v21.11.x
Browse files Browse the repository at this point in the history
backport v21.11.x: bk: run multiple repetitions of steps
  • Loading branch information
ivotron committed Mar 9, 2022
2 parents cda79dc + 91eadd4 commit edc2c49
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
43 changes: 43 additions & 0 deletions .buildkite/hooks/pre-command
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/bin/bash

# This file should be kept in sync with vtools's pre-command file.
# https://github.com/redpanda-data/vtools/.buildkite/hooks/pre-command

set -uo pipefail
set +e

disable_hook="${DISABLE_PRE_COMMAND_HOOK:-0}"

if [[ ${disable_hook} == 0 ]]; then
PARALLEL_STEPS=1

repo=$(echo $BUILDKITE_REPO | awk -F/ '{print $NF}' | awk -F. '{print $1}')

if [[ ${BUILDKITE_PULL_REQUEST} != false ]]; then
labels=$(curl \
--retry 3 --retry-connrefused --fail \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${GITHUB_API_TOKEN}" \
"https://api.github.com/repos/redpanda-data/${repo}/issues/${BUILDKITE_PULL_REQUEST}/labels")

if [[ $? == "0" ]]; then
set -e
parallel=$(echo "${labels}" | jq -r '.[].name|select(startswith("ci-repeat-"))|ltrimstr("ci-repeat-")' | head -1)
curl \
-X "DELETE" \
--retry 3 --retry-connrefused --silent \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${GITHUB_API_TOKEN}" \
"https://api.github.com/repos/redpanda-data/${repo}/issues/${BUILDKITE_PULL_REQUEST}/labels/ci-repeat-$parallel"

if ((parallel > 1 && parallel < 20)); then
PARALLEL_STEPS=$parallel
else
echo >&2 "Provided parallel number is out of range(2-19). Changing to 1."
PARALLEL_STEPS=1
fi
fi
fi

export PARALLEL_STEPS
fi
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*.out
*.app
/*build*
!.buildkite
/dbuild
bin
_e2e_artifacts/
Expand Down Expand Up @@ -240,4 +241,4 @@ vbuild/
# VSCode java settings
.classpath
.factorypath
.settings/
.settings/

0 comments on commit edc2c49

Please sign in to comment.