mirror of https://github.com/docker/docker-py.git
Jenkinsfile: update API version matrix; set default to v1.40
- Added new entry for Docker 19.03 - Removed obsolete engine versions that reached EOL (both as Community Edition and Enterprise Edition) - Set the fallback/default API version to v1.40, which corresponds with Docker 19.03 (current release) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
c88205c5ce
commit
38fe3983ba
|
|
@ -46,12 +46,14 @@ def getDockerVersions = { ->
|
||||||
|
|
||||||
def getAPIVersion = { engineVersion ->
|
def getAPIVersion = { engineVersion ->
|
||||||
def versionMap = [
|
def versionMap = [
|
||||||
'17.06': '1.30', '17.12': '1.35', '18.02': '1.36', '18.03': '1.37',
|
'17.06': '1.30',
|
||||||
'18.06': '1.38', '18.09': '1.39'
|
'18.03': '1.37',
|
||||||
|
'18.09': '1.39',
|
||||||
|
'19.03': '1.40'
|
||||||
]
|
]
|
||||||
def result = versionMap[engineVersion.substring(0, 5)]
|
def result = versionMap[engineVersion.substring(0, 5)]
|
||||||
if (!result) {
|
if (!result) {
|
||||||
return '1.39'
|
return '1.40'
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue