Skip to content

Commit

Permalink
dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
fatteneder committed Nov 5, 2024
1 parent 2704c83 commit 014c2cc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pipelines/main/launch_unsigned_jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ steps:
commands: |
# Launch Linux build jobs
FORCE=$(test -n "$(echo $${PULL_REQUEST_LABELS} | grep "\\<ci-force-build\\>")" && echo 1 || echo 0)
echo "HELLO"
echo "$${PULL_REQUEST_LABELS}"
echo "${FORCE}"
echo "WORLD"
BUILD=$(($${BUILDKITE_PLUGIN_DIFF_FILTER_TRIGGERED_BUILD} || ${FORCE}))
GROUP="Build" \
ALLOW_FAIL="false" \
Expand Down Expand Up @@ -92,6 +96,10 @@ steps:
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/doctest.yml
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/pdf_docs/build_pdf_docs.yml
FORCE=$(test -n "$(echo $${PULL_REQUEST_LABELS} | grep "\\<ci-force-build\\>")" && echo 1 || echo 0)
echo "HELLO"
echo "$${PULL_REQUEST_LABELS}"
echo "${FORCE}"
echo "WORLD"
BUILD=$(($${BUILDKITE_PLUGIN_DIFF_FILTER_TRIGGERED_BUILD} || ${FORCE}))
if [[ ${BUILD} == 1 ]]; then
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/analyzegc.yml
Expand Down Expand Up @@ -120,6 +128,10 @@ steps:
commands: |
export ALLOW_FAIL="false"
FORCE=$(test -n "$(echo $${PULL_REQUEST_LABELS} | grep "\\<ci-force-build\\>")" && echo 1 || echo 0)
echo "HELLO"
echo "$${PULL_REQUEST_LABELS}"
echo "${FORCE}"
echo "WORLD"
BUILD=$(($${BUILDKITE_PLUGIN_DIFF_FILTER_TRIGGERED_BUILD} || ${FORCE}))
if [[ ${BUILD} == 1 ]]; then
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/gcext.yml
Expand Down Expand Up @@ -166,6 +178,10 @@ steps:
commands: |
export ALLOW_FAIL="true"
FORCE=$(test -n "$(echo $${PULL_REQUEST_LABELS} | grep "\\<ci-force-build\\>")" && echo 1 || echo 0)
echo "HELLO"
echo "$${PULL_REQUEST_LABELS}"
echo "${FORCE}"
echo "WORLD"
BUILD=$(($${BUILDKITE_PLUGIN_DIFF_FILTER_TRIGGERED_BUILD} || ${FORCE}))
if [[ ${BUILD} == 1 ]]; then
# Launch Linux allowed-to-fail build jobs
Expand All @@ -192,6 +208,10 @@ steps:
commands: |
export ALLOW_FAIL="true"
FORCE=$(test -n "$(echo $${PULL_REQUEST_LABELS} | grep "\\<ci-force-build\\>")" && echo 1 || echo 0)
echo "HELLO"
echo "$${PULL_REQUEST_LABELS}"
echo "${FORCE}"
echo "WORLD"
BUILD=$(($${BUILDKITE_PLUGIN_DIFF_FILTER_TRIGGERED_BUILD} || ${FORCE}))
if [[ ${BUILD} == 1 ]]; then
# Launch Linux allowed-to-fail test jobs
Expand Down

0 comments on commit 014c2cc

Please sign in to comment.