ac9c3c1635
During provisioning, PAPR injects a fedora.repo pointing at a much better & faster mirror than dl.fp.o. Let's use that to make the compose test less flaky. Hoping to make these sorts of optimizations more discoverable in upstream PAPR. Closes: #799 Approved by: cgwalters
83 lines
1.5 KiB
YAML
83 lines
1.5 KiB
YAML
branches:
|
|
- master
|
|
- auto
|
|
- try
|
|
|
|
context: f25-build-check
|
|
|
|
required: true
|
|
|
|
container:
|
|
image: registry.fedoraproject.org/fedora:25
|
|
|
|
packages:
|
|
- git
|
|
|
|
tests:
|
|
- ci/ci-commitmessage-submodules.sh
|
|
- ci/build-check.sh
|
|
|
|
timeout: 30m
|
|
|
|
artifacts:
|
|
- test-suite.log
|
|
|
|
---
|
|
|
|
inherit: true
|
|
|
|
context: vmcheck
|
|
|
|
required: true
|
|
|
|
cluster:
|
|
hosts:
|
|
- name: vmcheck1
|
|
distro: fedora/25/atomic
|
|
- name: vmcheck2
|
|
distro: fedora/25/atomic
|
|
- name: vmcheck3
|
|
distro: fedora/25/atomic
|
|
container:
|
|
image: registry.fedoraproject.org/fedora:25
|
|
|
|
tests:
|
|
- ./ci/build.sh
|
|
- make vmcheck HOSTS="vmcheck1 vmcheck2 vmcheck3"
|
|
|
|
artifacts:
|
|
- vmcheck
|
|
|
|
# We really need to work on getting this down:
|
|
# https://github.com/projectatomic/rpm-ostree/issues/662
|
|
timeout: 80m
|
|
|
|
---
|
|
|
|
# NB: when bumping 25 here, also bump fedora.repo, compose script, and
|
|
# fedora-base.json
|
|
|
|
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
|
|
|
|
# copy yum.repos.d to get any injected repos from the host, which
|
|
# will point to a closer mirror
|
|
tests:
|
|
- docker run --privileged --rm
|
|
-e RPMOSTREE_COMPOSE_TEST_USE_HOST_REPO=1
|
|
-v /etc/yum.repos.d:/etc/yum.repos.d.host:ro
|
|
-v $(pwd):/srv/code -w /srv/code
|
|
registry.fedoraproject.org/fedora:25 /bin/sh -c
|
|
"cp -fv /etc/yum.repos.d{.host/*.repo,} &&
|
|
./ci/build.sh && make install && ./tests/compose"
|
|
|
|
artifacts:
|
|
- compose.log
|