Drop minor version from php package in blueprint

there's 7.2 in Fedora 29 (which we use in Jenkins) and 7.3 in
Rawhide which causes test jobs to fail with unsolved dependencies.
Alternatively we can switch to another recipe for cloud image tests.
This commit is contained in:
Alexander Todorov 2018-11-27 16:34:56 +02:00 committed by Alexander Todorov
parent b88466fd74
commit cd6f4fdb67
2 changed files with 6 additions and 6 deletions

View File

@ -16,11 +16,11 @@ version = "2.4.*"
[[modules]]
name = "php"
version = "7.3.*"
version = "7.*"
[[modules]]
name = "php-mysqlnd"
version = "7.3.*"
version = "7.*"
[[packages]]
name = "tmux"

View File

@ -156,8 +156,8 @@ class ServerTestCase(unittest.TestCase):
"modules":[{"name":"httpd", "version":"2.4.*"},
{"name":"mod_auth_openid", "version":"0.8"},
{"name":"mod_ssl", "version":"2.4.*"},
{"name":"php", "version":"7.3.*"},
{"name": "php-mysqlnd", "version":"7.3.*"}],
{"name":"php", "version":"7.*"},
{"name": "php-mysqlnd", "version":"7.*"}],
"name":"example-http-server",
"packages": [{"name":"openssh-server", "version": "7.*"},
{"name": "rsync", "version": "3.1.*"},
@ -184,8 +184,8 @@ class ServerTestCase(unittest.TestCase):
"modules":[{"name":"httpd", "version":"2.4.*"},
{"name":"mod_auth_openid", "version":"0.8"},
{"name":"mod_ssl", "version":"2.4.*"},
{"name":"php", "version":"7.3.*"},
{"name": "php-mysqlnd", "version":"7.3.*"}],
{"name":"php", "version":"7.*"},
{"name": "php-mysqlnd", "version":"7.*"}],
"name":"example-http-server",
"packages": [{"name":"openssh-server", "version": "7.*"},
{"name": "rsync", "version": "3.1.*"},