From 767ed8c5da985601dbd956cd3776abfa3a86cff8 Mon Sep 17 00:00:00 2001 From: Ruben ten Hove Date: Thu, 14 May 2020 16:49:44 +0200 Subject: add python setuptools to travis builds --- test/travis/bionic/Dockerfile | 1 + test/travis/trusty/Dockerfile | 1 + test/travis/xenial/Dockerfile | 1 + 3 files changed, 3 insertions(+) (limited to 'test/travis') diff --git a/test/travis/bionic/Dockerfile b/test/travis/bionic/Dockerfile index 3883f775..d1b53e70 100644 --- a/test/travis/bionic/Dockerfile +++ b/test/travis/bionic/Dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && apt-get -y install \ flex \ git \ python3.7 python3.7-dev \ + python3-setuptools \ libtool libtool-bin \ libglib2.0-dev \ python-setuptools \ diff --git a/test/travis/trusty/Dockerfile b/test/travis/trusty/Dockerfile index 7b86f3e7..0a6f1804 100644 --- a/test/travis/trusty/Dockerfile +++ b/test/travis/trusty/Dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && apt-get -y install \ flex \ git \ python2.7 python2.7-dev \ + python3-setuptools \ libtool \ libglib2.0-dev \ python-setuptools \ diff --git a/test/travis/xenial/Dockerfile b/test/travis/xenial/Dockerfile index a5f8d359..6aa4b1d1 100644 --- a/test/travis/xenial/Dockerfile +++ b/test/travis/xenial/Dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && apt-get -y install \ flex \ git \ python3 python3-dev \ + python3-setuptools \ libtool libtool-bin \ libglib2.0-dev \ python-setuptools \ -- cgit v1.2.3 From 498e9f4298f6ef6d768e5415082f1ed325bb120b Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Thu, 14 May 2020 23:54:07 +0200 Subject: adding 20.04 test --- test/travis/focal/Dockerfile | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 test/travis/focal/Dockerfile (limited to 'test/travis') diff --git a/test/travis/focal/Dockerfile b/test/travis/focal/Dockerfile new file mode 100644 index 00000000..06f6841e --- /dev/null +++ b/test/travis/focal/Dockerfile @@ -0,0 +1,44 @@ +# This is the Dockerfile for testing problems in Travis build +# configuration #1. +# This needs not to be rebuild everytime, most of the time it needs just to +# be build once and then started when debugging issues and execute: +# cd /AFLplusplus/ +# git pull +# make distrib +# +FROM ubuntu:focal +LABEL "about"="travis image 4" +RUN apt-get update && apt-get -y install \ + automake \ + bison \ + build-essential \ + clang \ + flex \ + git \ + python3 python3-dev \ + python3-setuptools \ + libtool libtool-bin \ + libglib2.0-dev \ + python-setuptools \ + wget \ + ca-certificates \ + libpixman-1-dev \ + gcc-7 gcc-7-plugin-dev libc++-7-dev \ + findutils \ + libcmocka-dev \ + joe nano vim locate \ + && rm -rf /var/lib/apt/lists/* + +ENV AFL_NO_UI=1 +ENV AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1 + +RUN cd / && \ + git clone https://github.com/AFLplusplus/AFLplusplus && \ + cd AFLplusplus && \ + git checkout dev && \ + cd qemu_mode && wget http://download.qemu-project.org/qemu-3.1.1.tar.xz && \ + cd ../unicorn_mode && git submodule init && git submodule update || true && \ + cd /AFLplusplus && ASAN_BUILD=1 make source-only || true + +WORKDIR /AFLplusplus +CMD ["/bin/bash"] -- cgit v1.2.3 From c084458294031d72b066c28ee4e118fa64899b07 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Fri, 15 May 2020 00:51:57 +0200 Subject: updated 20.04 Dockerfile --- test/travis/focal/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/travis') diff --git a/test/travis/focal/Dockerfile b/test/travis/focal/Dockerfile index 06f6841e..27d994f2 100644 --- a/test/travis/focal/Dockerfile +++ b/test/travis/focal/Dockerfile @@ -8,6 +8,7 @@ # FROM ubuntu:focal LABEL "about"="travis image 4" +ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get -y install \ automake \ bison \ @@ -23,7 +24,7 @@ RUN apt-get update && apt-get -y install \ wget \ ca-certificates \ libpixman-1-dev \ - gcc-7 gcc-7-plugin-dev libc++-7-dev \ + gcc-9 gcc-9-plugin-dev libc++-9-dev \ findutils \ libcmocka-dev \ joe nano vim locate \ -- cgit v1.2.3