blob: 119dd5fcf2ea59b9f429584fd8f9ef48414ce93a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
---
# This YAML file is used by PAPR. It details the test
# environment to provision and the test procedure. For more
# information on PAPR, see:
#
# https://github.com/projectatomic/papr
#
# The PAPR YAML specification detailing allowed fields can
# be found at:
#
# https://github.com/projectatomic/papr/blob/master/sample.papr.yml
cluster:
hosts:
- name: ocp-master
distro: fedora/26/atomic
specs:
ram: 4096
- name: ocp-node1
distro: fedora/26/atomic
- name: ocp-node2
distro: fedora/26/atomic
container:
image: registry.fedoraproject.org/fedora:26
# temp workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1483553
#packages:
# - gcc
# - python-pip
# - python-devel
# - libffi-devel
# - openssl-devel
# - redhat-rpm-config
context: 'fedora/26/atomic'
env:
OPENSHIFT_IMAGE_TAG: v3.6.0
tests:
# temp workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1483553
- if (dnf distro-sync -y || :) |& grep -q -e BDB1539; then
rpm --rebuilddb; dnf distro-sync;
fi; dnf install -y gcc python-pip python-devel libffi-devel openssl-devel redhat-rpm-config
- ./.papr.sh
artifacts:
- journals/
|