]> Git Repo - qemu.git/blob - .shippable.yml
shippable: build using all available cpus
[qemu.git] / .shippable.yml
1 language: c
2 env:
3   global:
4     - LC_ALL=C
5   matrix:
6     - IMAGE=debian-armhf-cross
7       TARGET_LIST=arm-softmmu,arm-linux-user
8     - IMAGE=debian-arm64-cross
9       TARGET_LIST=aarch64-softmmu,aarch64-linux-user
10     - IMAGE=debian-s390x-cross
11       TARGET_LIST=s390x-softmmu,s390x-linux-user
12 build:
13   pre_ci:
14     - make docker-image-${IMAGE}
15   pre_ci_boot:
16     image_name: qemu
17     image_tag: ${IMAGE}
18     pull: false
19     options: "-e HOME=/root"
20   ci:
21     - unset CC
22     - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
23     - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))
This page took 0.023539 seconds and 4 git commands to generate.