Skip to content

Commit a0c6f13

Browse files
committed
Add build-time dependencies
1 parent 80218fa commit a0c6f13

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/reusable-build/action.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@ runs:
1818
shell: bash
1919
run: |
2020
sudo apt update
21-
sudo apt install -y automake build-essential ca-certificates curl git gcc-10 g++-10 libcurl3-dev libfreetype6-dev libpng-dev libtool libzmq3-dev mlocate openjdk-8-jdk openjdk-8-jre-headless pkg-config python-dev software-properties-common swig unzip wget zip zlib1g-dev
21+
sudo apt install -y automake build-essential ca-certificates curl git gcc-10 g++-10 libcurl3-dev libfreetype6-dev libpng-dev libtool libzmq3-dev mlocate openjdk-8-jdk openjdk-8-jre-headless pkg-config software-properties-common swig unzip wget zip zlib1g-dev
22+
23+
- name: Install python dependencies
24+
shell: bash
25+
run: |
26+
# This uses the pre-PEP517 setuptools approach, which means
27+
# wheels aren't built in isolated environments. We therefore need to install
28+
# a bunch of build-time stuff here.
29+
pip instasll future>=0.17.1 grpcio h5py keras_applications>=1.0.8 keras_preprocessing>=1.1.0 mock numpy portpicker requests
2230
2331
- uses: bazel-contrib/setup-bazel@0.8.5
2432
name: Set up Bazel

0 commit comments

Comments
 (0)