diff --git a/.circleci/config.yml b/.circleci/config.yml index a6deecfcc45d43..a756033dcc7de9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,7 +23,7 @@ jobs: # a basic unit of work in a run - run: name: Check for Additional Platforms command: | - result = $(../scripts/check-for-additional-platforms.sh "origin/master...HEAD" "build_and_test" "${CIRCLE_JOB}") + result = $(./scripts/check-for-additional-platforms.sh "origin/master...HEAD" "build_and_test" "${CIRCLE_JOB}") if [[ result != "build" ]] then echo "No recipes using this platform, skipping rest of job." @@ -106,7 +106,7 @@ jobs: # a basic unit of work in a run - run: name: Check for Additional Platforms command: | - result = $(../scripts/check-for-additional-platforms.sh "${CIRCLE_SHA1}~1 ${CIRCLE_SHA1}" "build_and_upload" "${CIRCLE_JOB}") + result = $(./scripts/check-for-additional-platforms.sh "${CIRCLE_SHA1}~1 ${CIRCLE_SHA1}" "build_and_upload" "${CIRCLE_JOB}") if [[ result != "build" ]] then echo "No recipes using this platform, skipping rest of job." diff --git a/.github/workflows/PR-arm.yml b/.github/workflows/PR-arm.yml index 689049f59af283..431b6617f3d213 100644 --- a/.github/workflows/PR-arm.yml +++ b/.github/workflows/PR-arm.yml @@ -21,7 +21,7 @@ jobs: - name: Check for Additional Platforms id: additional_platforms run: | - result = $(../scripts/check-for-additional-platforms.sh "origin/master...HEAD" "build_and_test" "${GITHUB_JOB}") + result = $(./scripts/check-for-additional-platforms.sh "origin/master...HEAD" "build_and_test" "${GITHUB_JOB}") if [[ result != "build" ]] then echo "No recipes using this platform, skipping rest of job." diff --git a/.github/workflows/master-arm.yml b/.github/workflows/master-arm.yml index d2e649e4477221..16b4dffc45af13 100644 --- a/.github/workflows/master-arm.yml +++ b/.github/workflows/master-arm.yml @@ -21,7 +21,7 @@ jobs: - name: Check for Additional Platforms id: additional_platforms run: | - result = $(../scripts/check-for-additional-platforms.sh "${GITHUB_SHA}~1 ${GITHUB_SHA}" "build_and_upload" "${GITHUB_JOB}") + result = $(./scripts/check-for-additional-platforms.sh "${GITHUB_SHA}~1 ${GITHUB_SHA}" "build_and_upload" "${GITHUB_JOB}") if [[ result != "build" ]] then echo "No recipes using this platform, skipping rest of job."