forked from apache/incubator-heron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* commit * commit * commit * clean up python script. * commit * successfully generating static docs in docker container * clean up * clean up * clean up
- Loading branch information
1 parent
9d7c1ac
commit a23b42a
Showing
6 changed files
with
141 additions
and
21 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
FROM ubuntu:18.04 | ||
|
||
# This is passed to the heron build command via the --config flag | ||
ENV TARGET_PLATFORM ubuntu | ||
ENV bazelVersion 0.26.0 | ||
|
||
RUN apt-get update && apt-get -y install \ | ||
g++ \ | ||
cmake \ | ||
automake \ | ||
libtool-bin \ | ||
libunwind8 \ | ||
patch \ | ||
python-dev \ | ||
wget \ | ||
zip \ | ||
virtualenv \ | ||
unzip \ | ||
git \ | ||
curl \ | ||
openjdk-8-jdk-headless \ | ||
tree \ | ||
python-setuptools \ | ||
python-dev \ | ||
python-wheel \ | ||
python \ | ||
python-pip \ | ||
curl \ | ||
sudo | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - | ||
|
||
RUN apt-get update && apt-get install -y nodejs | ||
|
||
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64 | ||
|
||
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \ | ||
&& chmod +x /tmp/bazel.sh \ | ||
&& /tmp/bazel.sh | ||
|
||
ADD bazelrc /root/.bazelrc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#!/bin/bash | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
set -o nounset | ||
set -o errexit | ||
|
||
realpath() { | ||
echo "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")" | ||
} | ||
|
||
DOCKER_DIR=$(dirname $(dirname $(realpath $0))) | ||
echo "docker dir: $DOCKER_DIR" | ||
PROJECT_DIR=$(dirname $DOCKER_DIR) | ||
echo "project dir: $PROJECT_DIR" | ||
|
||
verify_dockerfile_exists() { | ||
if [ ! -f $1 ]; then | ||
echo "The Dockerfile $1 does not exist" | ||
exit 1 | ||
fi | ||
} | ||
|
||
dockerfile_path_for_platform() { | ||
echo "$PROJECT_DIR/website/scripts/Dockerfile.$1" | ||
} | ||
|
||
copy_bazel_rc_to() { | ||
cp $PROJECT_DIR/../tools/docker/bazel.rc $1 | ||
} | ||
|
||
|
||
|
||
TARGET_PLATFORM="ubuntu18.04" | ||
DOCKER_FILE=$(dockerfile_path_for_platform $TARGET_PLATFORM) | ||
verify_dockerfile_exists $DOCKER_FILE | ||
copy_bazel_rc_to $PROJECT_DIR/website/scripts/bazelrc | ||
|
||
echo "docker file" | ||
echo $DOCKER_FILE | ||
|
||
echo "Building heron-compiler container" | ||
docker build -t heron-compiler:$TARGET_PLATFORM -f $DOCKER_FILE . | ||
|
||
|
||
docker run \ | ||
--rm \ | ||
-v $PROJECT_DIR/..:/dist \ | ||
-t heron-compiler:$TARGET_PLATFORM make -C /dist/website2/website/ buildsite | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters