From f51d8c70691a6a584ca71cbef3556bcbb398f9e6 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Mon, 7 Jan 2019 23:09:49 -0800 Subject: [PATCH] Actually run the fuzzers in the cloudbuild. Signed-off-by: Tim 'mithro' Ansell --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ea9a70b3..f4db0ab1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,9 @@ FROM ${DEV_ENV_IMAGE} AS db_builder ARG NUM_PARALLEL_JOBS=1 COPY . /source -RUN cd /source && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefined-variables database -RUN find /source/database -mindepth 1 -maxdepth 1 -type d -exec /source/htmlgen/htmlgen.py --settings={}/settings.sh --output=/output/html \; +RUN cd /source && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefined-variables build +RUN source /source/database/artix7/settings.sh; cd /source/fuzzer && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefined-variables +#RUN find /source/database -mindepth 1 -maxdepth 1 -type d -exec /source/htmlgen/htmlgen.py --settings={}/settings.sh --output=/output/html \; RUN mkdir -p /output/raw && find /source/database -mindepth 1 -maxdepth 1 -type d -exec cp -R {} /output/raw \; FROM amd64/nginx:alpine