diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 737df9809f..8bfe3dcec3 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 4020898801..35cd89bb11 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 ca64ed413a..9fd2b0af7a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@