[infra] removing workspace directory

This commit is contained in:
Mike Aizatsky 2016-08-01 14:15:43 -07:00
parent de5f04b08b
commit f1b094b16a
5 changed files with 3 additions and 8 deletions

View File

@ -7,5 +7,5 @@ Building and running:
````bash
# Checkout sources into ~/src/oss-fuzz & ~/src/expat
docker build -t ossfuzz/expat expat && \
docker run -i -v ~/src/oss-fuzz:/src/oss-fuzz -v ~/src/expat:/workspace -t ossfuzz/expat
docker run -i -v ~/src/oss-fuzz:/src/oss-fuzz -v ~/src/expat:/src/expat -t ossfuzz/expat
````

View File

@ -1,7 +1,7 @@
#!/bin/bash -ex
. /env
cd /workspace/expat
cd /src/expat
./buildconf.sh
./configure

View File

@ -17,7 +17,7 @@
################################################################################
. /env
cd /workspace/
cd /src/freetype2/
./autogen.sh
./configure

View File

@ -14,7 +14,6 @@
# limitations under the License.
#
################################################################################
export WORKSPACE="/workspace"
export CC="clang"
export CXX="clang++"
export CCC="clang++"

View File

@ -21,10 +21,6 @@ RUN apt-get install -y git libc6-dev
RUN cd /src && git clone --depth 1 https://github.com/google/oss-fuzz.git
VOLUME /src/oss-fuzz
RUN mkdir /workspace
WORKDIR /workspace
VOLUME /workspace
RUN mkdir -p /work/libfuzzer
ENV sanitizer_flags="-fsanitize=address"