.travis.yml (882084a0) | .travis.yml (db727a14) |
---|---|
1os: linux 2dist: focal 3language: c 4compiler: 5 - gcc 6cache: 7 # There is one cache per branch and compiler version. 8 # characteristics of each job are used to identify the cache: --- 204 unchanged lines hidden (view full) --- 213 - libvte-2.91-dev 214 - ninja-build 215 # Tests dependencies 216 - genisoimage 217 env: 218 - TEST_CMD="make check check-tcg V=1" 219 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user" 220 - UNRELIABLE=true | 1os: linux 2dist: focal 3language: c 4compiler: 5 - gcc 6cache: 7 # There is one cache per branch and compiler version. 8 # characteristics of each job are used to identify the cache: --- 204 unchanged lines hidden (view full) --- 213 - libvte-2.91-dev 214 - ninja-build 215 # Tests dependencies 216 - genisoimage 217 env: 218 - TEST_CMD="make check check-tcg V=1" 219 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user" 220 - UNRELIABLE=true |
221 - DFLTCC=0 | |
222 script: 223 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$? 224 - | 225 if [ "$BUILD_RC" -eq 0 ] ; then 226 mv pc-bios/s390-ccw/*.img qemu-bundle/usr/local/share/qemu ; 227 ${TEST_CMD} ; 228 else 229 $(exit $BUILD_RC); --- 23 unchanged lines hidden (view full) --- 253 - nettle-dev 254 - xfslibs-dev 255 - ninja-build 256 # Tests dependencies 257 - genisoimage 258 env: 259 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user 260 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" | 221 script: 222 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$? 223 - | 224 if [ "$BUILD_RC" -eq 0 ] ; then 225 mv pc-bios/s390-ccw/*.img qemu-bundle/usr/local/share/qemu ; 226 ${TEST_CMD} ; 227 else 228 $(exit $BUILD_RC); --- 23 unchanged lines hidden (view full) --- 252 - nettle-dev 253 - xfslibs-dev 254 - ninja-build 255 # Tests dependencies 256 - genisoimage 257 env: 258 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user 259 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" |
261 - DFLTCC=0 | 260 |
262 - name: "[s390x] GCC (user)" 263 arch: s390x 264 dist: focal 265 addons: 266 apt_packages: 267 - libgcrypt20-dev 268 - libglib2.0-dev 269 - libgnutls28-dev 270 - ninja-build 271 env: 272 - CONFIG="--disable-containers --disable-system" | 261 - name: "[s390x] GCC (user)" 262 arch: s390x 263 dist: focal 264 addons: 265 apt_packages: 266 - libgcrypt20-dev 267 - libglib2.0-dev 268 - libgnutls28-dev 269 - ninja-build 270 env: 271 - CONFIG="--disable-containers --disable-system" |
273 - DFLTCC=0 | 272 |
274 - name: "[s390x] Clang (disable-tcg)" 275 arch: s390x 276 dist: focal 277 compiler: clang 278 addons: 279 apt_packages: 280 - libaio-dev 281 - libattr1-dev --- 17 unchanged lines hidden (view full) --- 299 - libvdeplug-dev 300 - libvte-2.91-dev 301 - ninja-build 302 env: 303 - TEST_CMD="make check-unit" 304 - CONFIG="--disable-containers --disable-tcg --enable-kvm 305 --disable-tools --host-cc=clang --cxx=clang++" 306 - UNRELIABLE=true | 273 - name: "[s390x] Clang (disable-tcg)" 274 arch: s390x 275 dist: focal 276 compiler: clang 277 addons: 278 apt_packages: 279 - libaio-dev 280 - libattr1-dev --- 17 unchanged lines hidden (view full) --- 298 - libvdeplug-dev 299 - libvte-2.91-dev 300 - ninja-build 301 env: 302 - TEST_CMD="make check-unit" 303 - CONFIG="--disable-containers --disable-tcg --enable-kvm 304 --disable-tools --host-cc=clang --cxx=clang++" 305 - UNRELIABLE=true |
307 - DFLTCC=0 | |