From c746eb1603c9fb81bc63a78a2f13cdd5461befd4 Mon Sep 17 00:00:00 2001 From: Joao Gante Date: Mon, 27 Mar 2023 14:20:56 +0100 Subject: [PATCH] TensorFlow: additional missing `cmake` dependencies in CI (#22383) * missing cmake * more cmake --- .circleci/create_circleci_config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/create_circleci_config.py b/.circleci/create_circleci_config.py index 0f682d8958..a5ebdc85f6 100644 --- a/.circleci/create_circleci_config.py +++ b/.circleci/create_circleci_config.py @@ -182,7 +182,7 @@ torch_and_tf_job = CircleCIJob( "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]", @@ -319,6 +319,7 @@ examples_tensorflow_job = CircleCIJob( "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", @@ -356,6 +357,7 @@ hub_job = CircleCIJob( 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]", ],