-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df0b67a
commit b2cb734
Showing
1 changed file
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -377,12 +377,12 @@ def job_name(self): | |
hub_job = CircleCIJob( | ||
"hub", | ||
additional_env={"HUGGINGFACE_CO_STAGING": True}, | ||
docker_image=[{"image":"huggingface/transformers-consistency"}], # TODO do we really need torch for that job? torch-light? | ||
install_steps=["uv venv", "uv pip install -e ."], | ||
install_steps=[ | ||
"sudo apt-get -y update && sudo apt-get install git-lfs", | ||
'git config --global user.email "[email protected]"', | ||
'git config --global user.name "ci"', | ||
"pip install --upgrade --upgrade-strategy eager pip", | ||
"pip install -U --upgrade-strategy eager .[torch,sentencepiece,testing,vision]", | ||
], | ||
marker="is_staging_test", | ||
pytest_num_workers=1, | ||
|
@@ -419,10 +419,8 @@ def job_name(self): | |
|
||
repo_utils_job = CircleCIJob( | ||
"repo_utils", | ||
install_steps=[ | ||
"pip install --upgrade --upgrade-strategy eager pip", | ||
"pip install -U --upgrade-strategy eager .[quality,testing,torch]", | ||
], | ||
docker_image=[{"image":"huggingface/transformers-consistency"}], # TODO do we really need torch for that job? torch-light? | ||
install_steps=["uv venv", "uv pip install -e ."], | ||
parallelism=None, | ||
pytest_num_workers=1, | ||
resource_class="large", | ||
|