Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/aiter-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,14 @@ jobs:
compression-level: 0
retention-days: 14

- name: Drop registry credentials
if: always()
run: |
# Self-hosted runners are persistent: drop the registry credentials
# written by the "Docker login" step so they do not outlive this job
# (SEC-00837 / ROCM-26712).
docker logout || true

upload_s3_manifest:
if: ${{ github.ref == 'refs/heads/main' && github.event_name != 'schedule' }}
needs: [build_aiter_wheels]
Expand Down Expand Up @@ -950,6 +958,10 @@ jobs:
if: always()
run: |
docker rm -f aiter_test || true
# Self-hosted runners are persistent: drop the registry credentials
# written by the "Docker login" step so they do not outlive this job
# (SEC-00837 / ROCM-26712).
docker logout || true

standard-test-finish:
if: >-
Expand Down Expand Up @@ -1222,6 +1234,10 @@ jobs:
if: always()
run: |
docker rm -f aiter_test || true
# Self-hosted runners are persistent: drop the registry credentials
# written by the "Docker login" step so they do not outlive this job
# (SEC-00837 / ROCM-26712).
docker logout || true

- name: Clean up Rocm processes
if: always()
Expand Down
Loading