rpm-ostree/.redhat-ci.yml
Colin Walters dee0807147 vmcheck: Scrape out the journal on failure
So we can debug things more easily.

Closes: #560
Approved by: jlebon
2017-01-11 18:39:25 +00:00

107 lines
1.6 KiB
YAML

branches:
- master
- auto
- try
context: check
required: true
container:
image: projectatomic/rpm-ostree-tester
env:
CFLAGS: '-fsanitize=undefined'
build:
config-opts: >
--prefix=/usr
--libdir=/usr/lib64
--enable-installed-tests
--enable-gtk-doc
tests:
- make check
- gnome-desktop-testing-runner rpm-ostree
- sudo --user=testuser gnome-desktop-testing-runner rpm-ostree
timeout: 30m
artifacts:
- test-suite.log
- config.log
---
inherit: true
context: Clang
required: true
env:
CC: 'clang'
CFLAGS: '-Werror=unused-variable'
build:
config-opts: >
--prefix=/usr
--libdir=/usr/lib64
--enable-installed-tests
--enable-gtk-doc
--enable-new-name
tests:
artifacts:
---
inherit: true
context: vmcheck
required: true
cluster:
hosts:
- name: vmcheck
distro: fedora/25/atomic
container:
image: projectatomic/rpm-ostree-tester
tests:
- cp .redhat-ci.ssh-config ssh-config
- make vmcheck
artifacts:
- vmcheck.log
- vmcheck-journal.txt
---
context: compose
build: false
timeout: 30m
# This test case wants an "unprivileged container with bubblewrap",
# which we don't have right now; so just provision a VM and do a
# docker --privileged run.
host:
distro: fedora/25/atomic
tests:
- >
docker run --privileged -v $(pwd):/srv/code --rm
projectatomic/rpm-ostree-tester /bin/sh -c "
cd /srv/code &&
env NOCONFIGURE=1 ./autogen.sh &&
./configure --prefix=/usr --libdir=/usr/lib64 &&
make &&
make install &&
dnf update -y bubblewrap &&
./tests/compose
"
artifacts:
- compose.log