Skip to content

Commit

Permalink
Updates to acc.
Browse files Browse the repository at this point in the history
  • Loading branch information
marianabuhazi committed Apr 27, 2024
1 parent d9cdae2 commit fd00493
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/regression-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ on:
- pipeline-sandbox

jobs:
end2end:
regression:
runs-on: self-hosted
steps:
- name: Discover modified accelerators
id: discover_accelerators
run: |
cd $HOME/esp/utils/scripts/actions-pipeline
modified_accelerators=$(./get_modified_accelerators.sh)
echo "::set-output name=modified_accelerators::$modified_accelerators"
./get_modified_accelerators.sh
6 changes: 4 additions & 2 deletions utils/scripts/actions-pipeline/get_modified_accelerators.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ for file in $modified_files; do
done < <(jq -c '.accelerators[]' "$ACCELERATORS")
done

echo "Modified Accelerators:"
echo "${modified_accelerators[@]}"
echo "Modified accelerators:"
for acc in "${modified_accelerators[@]}"; do
echo "-- $acc"
done

0 comments on commit fd00493

Please sign in to comment.