-
Notifications
You must be signed in to change notification settings - Fork 27.6k
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
b225fb7
commit 49c9a37
Showing
2 changed files
with
3 additions
and
3 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 |
---|---|---|
|
@@ -383,7 +383,7 @@ def job_name(self): | |
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 .", | ||
"sudo apt-get -y update && sudo apt-get install git-lfs", | ||
"apt-get -y update && sudo apt-get install git-lfs", | ||
'git config --global user.email "[email protected]"', | ||
'git config --global user.name "ci"', | ||
], | ||
|
@@ -395,7 +395,7 @@ def job_name(self): | |
onnx_job = CircleCIJob( | ||
"onnx", | ||
install_steps=[ | ||
"sudo apt-get -y update && sudo apt-get install -y cmake", | ||
"apt-get -y update && apt-get install -y cmake", | ||
"pip install --upgrade --upgrade-strategy eager pip", | ||
"pip install -U --upgrade-strategy eager .[torch,tf,testing,sentencepiece,onnxruntime,vision,rjieba]", | ||
], | ||
|
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