Skip to content

Commit

Permalink
fix scripts path
Browse files Browse the repository at this point in the history
  • Loading branch information
aliciaaevans committed Jul 5, 2024
1 parent 45d8860 commit 721cfc8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down Expand Up @@ -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."
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PR-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 721cfc8

Please sign in to comment.