diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-12-11 15:33:49 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-12-18 20:17:55 +0000 |
commit | bc4486fb233573e77b6e9ad6d6379afb5e37ad8c (patch) | |
tree | be80d546690b68fd441b51a8b661e4d6ac09bd07 /.shippable.yml | |
parent | 9c5941a96a55cb945b664961024070149ed76465 (diff) |
ci: build out-of-tree
Most developers are using out-of-tree builds and it was discussed in the past
to only allow those. To prepare for the transition, use out-of-tree builds
in all continuous integration jobs.
Based on a patch by Marc-André Lureau.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Li-Wen Hsu <lwhsu@freebsd.org>
Message-Id: <1576074829-56711-1-git-send-email-pbonzini@redhat.com>
Diffstat (limited to '.shippable.yml')
-rw-r--r-- | .shippable.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.shippable.yml b/.shippable.yml index f74a3de3ff..83aae08bb4 100644 --- a/.shippable.yml +++ b/.shippable.yml @@ -35,5 +35,7 @@ build: options: "-e HOME=/root" ci: - unset CC - - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST} + - mkdir build + - cd build + - ../configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST} - make -j$(($(getconf _NPROCESSORS_ONLN) + 1)) |