Add Dockerfile to test bazel build

This commit is contained in:
Corentin Le Molgat
2020-03-10 17:48:03 +01:00
parent b220388578
commit fc9553af86
3 changed files with 38 additions and 2 deletions

View File

@@ -25,8 +25,8 @@ makefiles
Makefile
Makefile.local
bazel
WORKSPACE
#bazel
#WORKSPACE
docs
Dependencies.txt

6
bazel/README.md Normal file
View File

@@ -0,0 +1,6 @@
# Docker file for testing
# Bazel Test
```sh
docker build -t bazel -f bazel.Dockerfile ..
```

30
bazel/bazel.Dockerfile Normal file
View File

@@ -0,0 +1,30 @@
# Create a virtual environment with all tools installed
# ref: https://hub.docker.com/_/ubuntu
FROM ubuntu:rolling AS env
LABEL maintainer="mizux.dev@gmail.com"
# Install system build dependencies
RUN apt-get update -qq \
&& apt-get install -yq git wget curl libssl-dev build-essential \
&& apt-get install -yq python3-dev python3-pip \
&& apt-get install -yq default-jdk \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Install Bazel
RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
RUN echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list
RUN apt-get update -qq \
&& apt-get install -yq bazel \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
CMD [ "/bin/bash" ]
# Create lib directory
WORKDIR /home/lib
# Bundle lib source
COPY . .
FROM env as build
RUN bazel build --curses=no --copt='-Wno-sign-compare' //...:all
FROM build as test
RUN bazel test -c opt --curses=no --copt='-Wno-sign-compare' //...:all