Skip to content

Commit

Permalink
Fix triton==3.1.0 issue
Browse files Browse the repository at this point in the history
Fix AWS Credentials issue

Signed-off-by: ZePan110 <ze.pan@intel.com>
  • Loading branch information
ZePan110 committed Feb 11, 2025
1 parent b777db7 commit bc12afa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/_comps-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
fi
if [[ $(grep -c "vllm-gaudi:" ${docker_compose_yml}) != 0 ]]; then
git clone --depth 1 --branch v0.6.4.post2+Gaudi-1.19.0 https://github.com/HabanaAI/vllm-fork.git
sed -i 's/triton/triton==3.1.0/g' vllm-fork/requirements-hpu.txt
# sed -i 's/triton/triton==3.1.0/g' vllm-fork/requirements-hpu.txt
fi
- name: Get build list
id: get-build-list
Expand Down Expand Up @@ -104,6 +104,9 @@ jobs:
####################################################################################################
test-service-compose:
needs: [build-images]
permissions:
id-token: write
contents: read
if: ${{ fromJSON(inputs.test_compose) }}
uses: ./.github/workflows/_run-docker-compose.yml
with:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/_run-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
run-test:
needs: [get-test-case]
permissions:
id-token: write
contents: read
strategy:
matrix:
include: ${{ fromJSON(needs.get-test-case.outputs.run_matrix).include }}
Expand All @@ -84,6 +87,13 @@ jobs:
ref: ${{ needs.get-test-case.outputs.CHECKOUT_REF }}
fetch-depth: 0

- name: Get AWS Credentials
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502
if: ${{ contains(matrix.test_case, 'bedrock') }}
with:
role-to-assume: ${{ secrets.AWS_IAM_ROLE_ARN }}
aws-region: us-east-1

- name: Run test
shell: bash
env:
Expand Down

0 comments on commit bc12afa

Please sign in to comment.