diff --git a/.buildkite/env-scripts/linux-env.sh b/.buildkite/env-scripts/linux-env.sh index 5e6e5f7cbf05..1365aaace4a9 100644 --- a/.buildkite/env-scripts/linux-env.sh +++ b/.buildkite/env-scripts/linux-env.sh @@ -9,8 +9,6 @@ DEBIAN_FRONTEND="noninteractive" sudo mkdir -p /etc/needrestart echo "\$nrconf{restart} = 'a';" | sudo tee -a /etc/needrestart/needrestart.conf > /dev/null -echo "--- PLATFORM TYPE $PLATFORM_TYPE" - if [[ $PLATFORM_TYPE == "Linux" ]]; then # Remove this code once beats specific agent is set up if grep -q 'Ubuntu' /etc/*release; then diff --git a/.buildkite/env-scripts/util.sh b/.buildkite/env-scripts/util.sh index 7aef69cff389..6a5c36bcd047 100644 --- a/.buildkite/env-scripts/util.sh +++ b/.buildkite/env-scripts/util.sh @@ -85,7 +85,6 @@ are_files_changed() { if git diff --name-only HEAD@{1} HEAD | grep -qE "$changeset"; then return 0; else - echo "WARN! No files changed in $changeset" return 1; fi } diff --git a/.buildkite/env-scripts/win-env.sh b/.buildkite/env-scripts/win-env.sh index ccf5479b46e1..931051d550af 100644 --- a/.buildkite/env-scripts/win-env.sh +++ b/.buildkite/env-scripts/win-env.sh @@ -1,6 +1,5 @@ #!/usr/bin/env bash -echo "--- PLATFORM TYPE: ${PLATFORM_TYPE}" if [[ ${PLATFORM_TYPE} = MINGW* ]]; then echo "--- Installing Python on Win" choco install mingw -y diff --git a/.buildkite/heartbeat/heartbeat-pipeline.yml b/.buildkite/heartbeat/heartbeat-pipeline.yml index 82c0cfd9a591..507392cb4ce3 100644 --- a/.buildkite/heartbeat/heartbeat-pipeline.yml +++ b/.buildkite/heartbeat/heartbeat-pipeline.yml @@ -15,7 +15,7 @@ steps: if: build.env("GITHUB_PR_TRIGGER_COMMENT") == "heartbeat" || build.env("BUILDKITE_PULL_REQUEST") != "false" steps: - - label: ":linux: Unit Tests" + - label: ":linux: Unit Tests / {{matrix.image}}" command: - ".buildkite/heartbeat/scripts/unit-tests.sh" notify: @@ -33,7 +33,7 @@ steps: - "heartbeat/build/*.xml" - "heartbeat/build/*.json" - - label: ":windows: Unit Tests" + - label: ":windows: Unit Tests / {{matrix.image}}" command: - ".buildkite/heartbeat/scripts/unit-tests-win.ps1" notify: diff --git a/.buildkite/heartbeat/scripts/integration-gotests.sh b/.buildkite/heartbeat/scripts/integration-gotests.sh old mode 100644 new mode 100755 diff --git a/.buildkite/heartbeat/scripts/integration-pytests.sh b/.buildkite/heartbeat/scripts/integration-pytests.sh old mode 100644 new mode 100755 diff --git a/.buildkite/heartbeat/scripts/package-step.sh b/.buildkite/heartbeat/scripts/package-step.sh old mode 100644 new mode 100755 diff --git a/.buildkite/heartbeat/scripts/package.sh b/.buildkite/heartbeat/scripts/package.sh old mode 100644 new mode 100755 diff --git a/.buildkite/heartbeat/scripts/unit-tests.sh b/.buildkite/heartbeat/scripts/unit-tests.sh old mode 100644 new mode 100755