first commit
Some checks failed
Self-hosted runner (nightly-past-ci-caller) / Get number (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.11 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.10 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.9 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.8 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.7 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.6 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.5 (push) Has been cancelled
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
Build documentation / build (push) Has been cancelled
Build documentation / build_other_lang (push) Has been cancelled
CodeQL Security Analysis / CodeQL Analysis (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
PR CI / pr-ci (push) Has been cancelled
Slow tests on important models (on Push - A10) / Get all modified files (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
Slow tests on important models (on Push - A10) / Model CI (push) Has been cancelled
Check Tiny Models / Check tiny models (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Model CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Pipeline CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Example CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / DeepSpeed CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI - Flash Attn / Setup (push) Has been cancelled
Nvidia CI - Flash Attn / Model CI (push) Has been cancelled
Nvidia CI / Setup (push) Has been cancelled
Nvidia CI / Model CI (push) Has been cancelled
Nvidia CI / Torch pipeline CI (push) Has been cancelled
Nvidia CI / Example CI (push) Has been cancelled
Nvidia CI / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI / DeepSpeed CI (push) Has been cancelled
Nvidia CI / Quantization CI (push) Has been cancelled
Nvidia CI / Kernels CI (push) Has been cancelled
Doctests / Setup (push) Has been cancelled
Doctests / Call doctest jobs (push) Has been cancelled
Doctests / Send results to webhook (push) Has been cancelled
Extras Smoke Test / Get supported Python versions (push) Has been cancelled
Extras Smoke Test / Test extras on Python ${{ matrix.python-version }} (push) Has been cancelled
Extras Smoke Test / Check Slack token availability (push) Has been cancelled
Extras Smoke Test / Notify failures to Slack (push) Has been cancelled
Self-hosted runner (AMD scheduled CI caller) / Trigger Scheduled AMD CI (push) Has been cancelled
Stale Bot / Close Stale Issues (push) Has been cancelled

This commit is contained in:
陈赣
2026-06-05 16:53:03 +08:00
commit 06f1fd69a6
6047 changed files with 1895387 additions and 0 deletions

211
.github/workflows/extras-smoke-test.yml vendored Normal file
View File

@@ -0,0 +1,211 @@
name: Extras Smoke Test
on:
schedule:
# Run every night at 3 AM UTC
- cron: "0 3 * * *"
env:
SLACK_CHANNEL_ID: '#transformers-gh-ci-central'
permissions:
contents: read
jobs:
get-python-versions:
name: Get supported Python versions
runs-on: ubuntu-latest
outputs:
versions: ${{ steps.extract-versions.outputs.versions }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install setuptools
run: |
python -m pip install --upgrade pip
pip install setuptools
- name: Extract Python versions from setup.py
id: extract-versions
run: |
VERSIONS=$(python utils/extract_metadata.py python-versions)
echo "Supported Python versions: $VERSIONS"
echo "versions=$VERSIONS" >> $GITHUB_OUTPUT
test-extras:
name: Test extras on Python ${{ matrix.python-version }}
needs: get-python-versions
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ${{ fromJson(needs.get-python-versions.outputs.versions) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools
- name: Extract extras for this Python version
id: get-extras
run: |
python utils/extract_metadata.py extras > extras_list.txt
echo "Found $(wc -l < extras_list.txt) extras for Python ${MATRIX_PYTHON_VERSION}"
cat extras_list.txt
env:
MATRIX_PYTHON_VERSION: ${{ matrix.python-version }}
- name: Install base package
run: |
echo "Installing base package..."
pip install -e .
- name: Test all extras
id: test-extras
run: |
mkdir -p failure_reports
failed=0
while IFS= read -r extra; do
echo "=== Testing extra: $extra on Python ${MATRIX_PYTHON_VERSION} ==="
if ! pip install -e .[$extra]; then
echo "❌ Failed to install extra: $extra"
cat > failure_reports/failure-${MATRIX_PYTHON_VERSION}-${extra}.json << EOF
{
"python_version": "${MATRIX_PYTHON_VERSION}",
"extra": "${extra}",
"job_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
}
EOF
failed=$((failed + 1))
else
echo "✓ Successfully installed extra: $extra"
fi
done < extras_list.txt
if [ $failed -gt 0 ]; then
echo "❌ $failed extra(s) failed to install"
exit 1
fi
env:
MATRIX_PYTHON_VERSION: ${{ matrix.python-version }}
- name: Verify installation
run: |
python -c "import transformers; print(f'Transformers version: {transformers.__version__}')"
python -c "from transformers import pipeline; print('Successfully imported pipeline')"
- name: Upload failure report
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: failure-report-${{ matrix.python-version }}
path: failure_reports/
retention-days: 1
if-no-files-found: ignore
precheck-slack:
name: Check Slack token availability
runs-on: ubuntu-latest
outputs:
has_slack_token: ${{ steps.chk.outputs.has_token }}
steps:
- id: chk
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
run: |
if [ -n "$SLACK_BOT_TOKEN" ]; then
echo "has_token=true" >> "$GITHUB_OUTPUT"
else
echo "has_token=false" >> "$GITHUB_OUTPUT"
fi
notify-failures:
name: Notify failures to Slack
needs: [test-extras, precheck-slack]
runs-on: ubuntu-latest
if: always() && needs.precheck-slack.outputs.has_slack_token == 'true' && needs.test-extras.result != 'success'
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: '3.11'
- name: Download all failure reports
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
pattern: failure-report-*
path: failure_reports/
merge-multiple: true
continue-on-error: true
- name: Aggregate failures
run: |
python utils/aggregate_failure_reports.py \
--input-dir failure_reports \
--output all_failures.json
- name: Format Slack message
env:
FAILURES_FILE: all_failures.json
WORKFLOW_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
run: |
python utils/format_extras_slack_message.py \
--failures "$FAILURES_FILE" \
--workflow-url "$WORKFLOW_URL"
- name: Send Slack notification
if: env.SLACK_MESSAGE != ''
uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001
with:
channel-id: ${{ env.SLACK_CHANNEL_ID }}
payload: |
{
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "${{ env.SLACK_TITLE }}"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "${{ env.SLACK_MESSAGE }}"
}
},
{
"type": "divider"
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<${{ env.SLACK_WORKFLOW_URL }}|View workflow run>"
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}