Skip to content

Commit

Permalink
TensorFlow: additional missing cmake dependencies in CI (huggingfac…
Browse files Browse the repository at this point in the history
…e#22383)

* missing cmake

* more cmake
  • Loading branch information
gante authored and raghavanone committed Apr 5, 2023
1 parent 7177ed1 commit 3252dc3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/create_circleci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def job_name(self):
"torch_and_tf",
additional_env={"RUN_PT_TF_CROSS_TESTS": True},
install_steps=[
"sudo apt-get -y update && sudo apt-get install -y libsndfile1-dev espeak-ng git-lfs",
"sudo apt-get -y update && sudo apt-get install -y libsndfile1-dev espeak-ng git-lfs cmake",
"git lfs install",
"pip install --upgrade pip",
"pip install .[sklearn,tf-cpu,torch,testing,sentencepiece,torch-speech,vision]",
Expand Down Expand Up @@ -319,6 +319,7 @@ def job_name(self):
"examples_tensorflow",
cache_name="tensorflow_examples",
install_steps=[
"sudo apt-get -y update && sudo apt-get install -y cmake",
"pip install --upgrade pip",
"pip install .[sklearn,tensorflow,sentencepiece,testing]",
"pip install -r examples/tensorflow/_tests_requirements.txt",
Expand Down Expand Up @@ -356,6 +357,7 @@ def job_name(self):
onnx_job = CircleCIJob(
"onnx",
install_steps=[
"sudo apt-get -y update && sudo apt-get install -y cmake",
"pip install --upgrade pip",
"pip install .[torch,tf,testing,sentencepiece,onnxruntime,vision,rjieba]",
],
Expand Down

0 comments on commit 3252dc3

Please sign in to comment.