Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions buildbot/buildbot_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,14 @@ echo used pipenv
popd
popd

python3 -m pip install --break-system-packages buildbot-worker==2.9.0
sudo -u buildbot python3 -m pip install --break-system-packages buildbot-worker==2.9.0
echo installed buildbot worker

# Install IR2Vec Python binding dependencies.
# Installs from llvm-project main; canonical source is
# llvm/tools/llvm-ir2vec/Bindings/requirements.txt
curl -L --retry 10 https://raw.githubusercontent.com/llvm/llvm-project/main/llvm/tools/llvm-ir2vec/Bindings/requirements.txt > /tmp/ir2vec-reqs.txt
python3 -m pip install --break-system-packages \
-r /tmp/ir2vec-reqs.txt
sudo -u buildbot python3 -m pip install --break-system-packages -r /tmp/ir2vec-reqs.txt

TF_PIP=$(sudo -u buildbot python3 -c "import tensorflow as tf; import os; print(os.path.dirname(tf.__file__))")

Expand Down
Loading