From: Evan Hunt Date: Thu, 22 Feb 2018 23:10:37 +0000 (-0800) Subject: final cleanup X-Git-Tag: v9.13.0~150^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c559199bf899c9f1aa636e535668f3b494e1c96;p=thirdparty%2Fbind9.git final cleanup - add CHANGES note - update copyrights and license headers - add -j to the make commands in .gitlab-ci.yml to take advantage of parallelization in the gitlab CI process --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 737df9809fc..8bfe3dcec30 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -86,7 +86,7 @@ stages: - ./autogen.sh script: - ./configure --with-libtool - - make -k all V=1 + - make -j6 -k all V=1 artifacts: expire_in: '1 hour' untracked: true @@ -96,7 +96,7 @@ stages: before_script: - bash -x bin/tests/system/ifconfig.sh up script: - - make -k check V=1 + - make -j5 -k check V=1 artifacts: untracked: true expire_in: '1 week' diff --git a/CHANGES b/CHANGES index 40208988017..35cd89bb116 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +4899. [test] Convert most of the remaining system tests to be able + to run in parallel, continuing the work from change + #4895. To take advantage of this, use "make -jN check", + where N is the number of processors to use. [GL #91] + 4898. [func] Remove libseccomp based system-call filtering. [GL #93] 4897. [test] Update to rpz system test so that it doesn't recurse. diff --git a/README.md b/README.md index ca64ed413a9..9fd2b0af7a6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@