Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

fix jenkins doc #3572

Merged
merged 3 commits into from
Jul 18, 2020
Merged
Show file tree
Hide file tree
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
35 changes: 18 additions & 17 deletions website2/website/scripts/Dockerfile.ubuntu18.04
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,29 @@ ENV bazelVersion 3.0.0


RUN apt-get update && apt-get -y install \
g++ \
cmake \
ant \
automake \
cmake \
curl \
curl \
g++ \
git \
libcppunit-dev \
libtool-bin \
libunwind8 \
patch \
python-dev \
wget \
zip \
virtualenv \
unzip \
git \
curl \
openjdk-11-jdk-headless \
patch \
python3 \
python3-dev \
python3-pip \
python3-setuptools \
python3-wheel \
sudo \
tree \
python-setuptools \
python-dev \
python-wheel \
python \
python-pip \
curl \
sudo
unzip \
virtualenv \
wget \
zip

RUN curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -

Expand Down
6 changes: 3 additions & 3 deletions website2/website/scripts/python-doc-gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ PIP_LOCATION=${HERON_ROOT_DIR}/bazel-bin/scripts/packages

virtualenv "$VENV"
source "$VENV/bin/activate"
pip install pdoc==0.3.2
pip install --ignore-installed six
pip3 install pdoc==0.3.2
pip3 install --ignore-installed six
# Install the heronpy
echo "list heronpy location"
ls $PIP_LOCATION
pip install $PIP_LOCATION/heronpy-*-py2.py3-none-any.whl
pip3 install $PIP_LOCATION/heronpy-*-py3-none-any.whl


mkdir -p static/api && rm -rf static/api/python
Expand Down