mirror of https://github.com/google/oss-fuzz.git
[infra] removing workspace directory
This commit is contained in:
parent
de5f04b08b
commit
f1b094b16a
|
@ -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
|
||||
````
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash -ex
|
||||
. /env
|
||||
|
||||
cd /workspace/expat
|
||||
cd /src/expat
|
||||
|
||||
./buildconf.sh
|
||||
./configure
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
################################################################################
|
||||
. /env
|
||||
|
||||
cd /workspace/
|
||||
cd /src/freetype2/
|
||||
|
||||
./autogen.sh
|
||||
./configure
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
# limitations under the License.
|
||||
#
|
||||
################################################################################
|
||||
export WORKSPACE="/workspace"
|
||||
export CC="clang"
|
||||
export CXX="clang++"
|
||||
export CCC="clang++"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue