Skip to content

Commit

Permalink
shellcheck linter
Browse files Browse the repository at this point in the history
  • Loading branch information
RonBenMosheHabana committed Jan 12, 2025
1 parent 4089df1 commit 90a3969
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/trigger_jenkins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
- name: Calculate Tests
id: tests
run: |
test_list=$(yq -oj e .jenkins/test_config.yaml | jq "[.stages[].steps[]]")
echo "tests_list=$(echo ${test_list})" >> $GITHUB_OUTPUT
test_list=$(yq -oj e .jenkins/test_config.yaml | jq -c "[.stages[].steps[]]")
echo "tests_list=${test_list}" >> "$GITHUB_OUTPUT"
TestRun:
name: Test / ${{matrix.tests.name}}
needs: [CalculateJobs]
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
echo "Cant Calculate Synapse Version, Failing The Test"
exit 1
fi
synapse_build=$(curl https://dms.habana-labs.com/api/v1.1/branch/info/v$synapse_version | jq -r ".release_id")
synapse_build=$(curl "https://dms.habana-labs.com/api/v1.1/branch/info/v$synapse_version" | jq -r ".release_id")
pt_version=${{ vars.PT_VERSION }}
BUILD_TAG="Github-vLLM-Fork-${{ github.event.number }}-${{github.run_number}}"
safe_cmd=${TEST_COMMAND//&/\\&}
Expand Down

0 comments on commit 90a3969

Please sign in to comment.