aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/sqlite3
diff options
context:
space:
mode:
authorGravatar Richard Hipp <drh@sqlite.org>2017-03-14 09:29:01 -0400
committerGravatar Max Moroz <mmoroz@chromium.org>2017-03-14 14:29:01 +0100
commite293ff7373d51027d23f7524ab9c6448243af769 (patch)
tree246fbff94d4a3311a62bf14cf7205709a8d0d904 /projects/sqlite3
parent892e524c09fb780a28c81d860205760ebbf135bc (diff)
[sqlite3] Changes to fetch SQLite sources as a tarball using curl (#454)
* Untested changes to fetch the latest SQLite sources as a tarball rather than using the Fossil DVCS. * [sqlite3] Address review comments for #454. * Revert of [sqlite3] Address review comments for #454. * Re-land of [sqlite3] Address review comments for #454.
Diffstat (limited to 'projects/sqlite3')
-rw-r--r--projects/sqlite3/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/projects/sqlite3/Dockerfile b/projects/sqlite3/Dockerfile
index fcf98b08..2ca4cf0a 100644
--- a/projects/sqlite3/Dockerfile
+++ b/projects/sqlite3/Dockerfile
@@ -16,14 +16,14 @@
FROM ossfuzz/base-builder
MAINTAINER tanin@google.com
-RUN apt-get install -y make autoconf automake libtool fossil tcl
+RUN apt-get install -y make autoconf automake libtool curl tcl
# We won't be able to poll fossil for changes, so this will build
# only once a day.
RUN mkdir $SRC/sqlite3 && \
cd $SRC/sqlite3 && \
- fossil clone https://www.sqlite.org/src sqlite --user `whoami` && \
- fossil open sqlite
+ curl 'https://www.sqlite.org/src/tarball?uuid=trunk' -o sqlite3.tar.gz && \
+ tar xzf sqlite3.tar.gz
RUN find $SRC/sqlite3 -name "*.test" | xargs zip $SRC/ossfuzz_seed_corpus.zip