diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-11-17 14:52:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-17 14:52:32 -0500 |
commit | 3c8135b912df0a7b404c01959e9302f5cc400b6d (patch) | |
tree | 92c5260a80f404d49488f02cbf767a6a2e224bfe /.papr.yml | |
parent | 69440cf70ca83374d20c174aec01684916822323 (diff) | |
parent | c574da6d973a235b97e2c2fe9bc6e065da226a8c (diff) | |
download | openshift-3c8135b912df0a7b404c01959e9302f5cc400b6d.tar.gz openshift-3c8135b912df0a7b404c01959e9302f5cc400b6d.tar.bz2 openshift-3c8135b912df0a7b404c01959e9302f5cc400b6d.tar.xz openshift-3c8135b912df0a7b404c01959e9302f5cc400b6d.zip |
Merge pull request #6132 from jlebon/pr/bump-and-fix
papr: auto-detect image tag to use and bump to f27
Diffstat (limited to '.papr.yml')
-rw-r--r-- | .papr.yml | 33 |
1 files changed, 13 insertions, 20 deletions
@@ -14,35 +14,28 @@ cluster: hosts: - name: ocp-master - distro: fedora/26/atomic + distro: fedora/27/atomic specs: ram: 4096 - name: ocp-node1 - distro: fedora/26/atomic + distro: fedora/27/atomic - name: ocp-node2 - distro: fedora/26/atomic + distro: fedora/27/atomic container: - image: registry.fedoraproject.org/fedora:26 + image: registry.fedoraproject.org/fedora:27 -# 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 +packages: + - gcc + - git + - python-pip + - python-devel + - libffi-devel + - openssl-devel + - redhat-rpm-config -context: 'fedora/26/atomic' - -env: - OPENSHIFT_IMAGE_TAG: v3.6.0 +context: 'fedora/27/atomic' 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: |