diff options
author | Sam Doran <sdoran@redhat.com> | 2019-07-09 23:45:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 23:45:06 +0200 |
commit | b9dafdbade2a95051f8bee1bbe2a1d7dcb0c40b2 (patch) | |
tree | ea6ba73432ef336cd072c77eccccdd4a78abe61f /test | |
parent | Update default test container to use Python 3.8.0b2 (#58877) (diff) | |
download | ansible-b9dafdbade2a95051f8bee1bbe2a1d7dcb0c40b2.tar.xz ansible-b9dafdbade2a95051f8bee1bbe2a1d7dcb0c40b2.zip |
Move integration tests to using RHEL 8.0 GA (#57772)
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/targets/dnf/vars/RedHat.yml | 2 | ||||
-rw-r--r-- | test/runner/completion/remote.txt | 2 | ||||
-rw-r--r-- | test/runner/setup/remote.sh | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/test/integration/targets/dnf/vars/RedHat.yml b/test/integration/targets/dnf/vars/RedHat.yml index 3285e76151..0fd8ee4b01 100644 --- a/test/integration/targets/dnf/vars/RedHat.yml +++ b/test/integration/targets/dnf/vars/RedHat.yml @@ -1 +1 @@ -astream_name: '@php:7.1/minimal' +astream_name: '@php:7.2/minimal' diff --git a/test/runner/completion/remote.txt b/test/runner/completion/remote.txt index 70894a1bfd..6263cf70ca 100644 --- a/test/runner/completion/remote.txt +++ b/test/runner/completion/remote.txt @@ -2,4 +2,4 @@ freebsd/11.1 python=2.7,3.6 python_dir=/usr/local/bin freebsd/12.0 python=3.6,2.7 python_dir=/usr/local/bin osx/10.11 python=2.7 python_dir=/usr/local/bin rhel/7.6 python=2.7 -rhel/8.0b python=3.6 +rhel/8.0 python=3.6 diff --git a/test/runner/setup/remote.sh b/test/runner/setup/remote.sh index b4ba94f262..7955259458 100644 --- a/test/runner/setup/remote.sh +++ b/test/runner/setup/remote.sh @@ -44,9 +44,6 @@ if [ "${platform}" = "freebsd" ]; then elif [ "${platform}" = "rhel" ]; then if grep '8\.' /etc/redhat-release; then while true; do - curl --silent --show-error -o /etc/yum.repos.d/rhel-8-beta.repo http://downloads.redhat.com/redhat/rhel/rhel-8-beta/rhel-8-beta.repo && \ - dnf config-manager --set-enabled rhel-8-for-x86_64-baseos-beta-rpms && \ - dnf config-manager --set-enabled rhel-8-for-x86_64-appstream-beta-rpms && \ yum module install -q -y python36 && \ yum install -q -y \ gcc \ |