Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 9 additions & 5 deletions .github/workflows/check_failed_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
n_runners: ${{ steps.set-matrix.outputs.n_runners }}
process: ${{ steps.set-matrix.outputs.process }}
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
continue-on-error: true
with:
name: ci_results_${{ inputs.job }}
Expand Down Expand Up @@ -127,12 +127,14 @@ jobs:
image: ${{ inputs.docker }}
options: --gpus all --shm-size "16gb" --ipc host -v /mnt/cache/.cache/huggingface:/mnt/cache/
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: ci_results_${{ inputs.job }}
path: /transformers/ci_results_${{ inputs.job }}

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
env:
ACTIONS_ARTIFACT_MAX_ARTIFACT_COUNT: 2000
Comment on lines +136 to +137

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This ACTIONS_ARTIFACT_MAX_ARTIFACT_COUNT only works with v8

with:
pattern: setup_values*
path: setup_values
Expand Down Expand Up @@ -255,12 +257,14 @@ jobs:
image: ${{ inputs.docker }}
options: --gpus all --shm-size "16gb" --ipc host -v /mnt/cache/.cache/huggingface:/mnt/cache/
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: ci_results_${{ inputs.job }}
path: /transformers/ci_results_${{ inputs.job }}

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
env:
ACTIONS_ARTIFACT_MAX_ARTIFACT_COUNT: 2000
with:
pattern: new_failures_with_bad_commit_${{ inputs.job }}*
path: /transformers/new_failures_with_bad_commit_${{ inputs.job }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/self-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,9 @@ jobs:
- name: Create output directory
run: mkdir warnings_in_ci

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
env:
ACTIONS_ARTIFACT_MAX_ARTIFACT_COUNT: 2000
with:
path: warnings_in_ci

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/slack-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
# Security: checkout to the `main` branch for untrusted triggers (issue_comment, pull_request_target), otherwise use the specified ref
ref: ${{ (github.event_name == 'issue_comment' || github.event_name == 'pull_request_target') && 'main' || (inputs.commit_sha || github.sha) }}

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
env:
ACTIONS_ARTIFACT_MAX_ARTIFACT_COUNT: 2000

- name: Prepare some setup values
run: |
Expand Down
Loading