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
86 lines
2.8 KiB
YAML
86 lines
2.8 KiB
YAML
name: Add model like runner
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- none # put main here when this is fixed
|
|
#pull_request:
|
|
# paths:
|
|
# - "src/**"
|
|
# - "tests/**"
|
|
# - ".github/**"
|
|
# types: [opened, synchronize, reopened]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
run_tests_templates_like:
|
|
name: "Add new model like template tests"
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt -y update && sudo apt install -y libsndfile1-dev
|
|
|
|
- name: Load cached virtual environment
|
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
|
id: cache
|
|
with:
|
|
path: ~/venv/
|
|
key: v4-tests_model_like-${{ hashFiles('setup.py') }}
|
|
|
|
- name: Create virtual environment on cache miss
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
python -m venv ~/venv && . ~/venv/bin/activate
|
|
pip install --upgrade pip!=21.3
|
|
pip install -e .[dev]
|
|
|
|
- name: Check transformers location
|
|
# make `transformers` available as package (required since we use `-e` flag) and check it's indeed from the repo.
|
|
run: |
|
|
. ~/venv/bin/activate
|
|
python setup.py develop
|
|
transformers_install=$(pip list -e | grep transformers)
|
|
transformers_install_array=($transformers_install)
|
|
transformers_loc=${transformers_install_array[-1]}
|
|
transformers_repo_loc=$(pwd .)
|
|
if [ "$transformers_loc" != "$transformers_repo_loc" ]; then
|
|
echo "transformers is from $transformers_loc but it shoud be from $transformers_repo_loc/src."
|
|
echo "A fix is required. Stop testing."
|
|
exit 1
|
|
fi
|
|
|
|
- name: Create model files
|
|
run: |
|
|
. ~/venv/bin/activate
|
|
transformers add-new-model-like --config_file tests/fixtures/add_distilbert_like_config.json --path_to_repo .
|
|
make style
|
|
make fix-copies
|
|
|
|
- name: Run all PyTorch modeling test
|
|
run: |
|
|
. ~/venv/bin/activate
|
|
python -m pytest -n 2 --dist=loadfile -s --make-reports=tests_new_models tests/bert_new/test_modeling_bert_new.py
|
|
|
|
- name: Run style changes
|
|
run: |
|
|
. ~/venv/bin/activate
|
|
make style && make quality && make repo-consistency
|
|
|
|
- name: Failure short reports
|
|
if: ${{ always() }}
|
|
run: cat reports/tests_new_models/failures_short.txt
|
|
|
|
- name: Test suite reports artifacts
|
|
if: ${{ always() }}
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: run_all_tests_new_models_test_reports
|
|
path: reports/tests_new_models
|