Merge pull request #1101 from owncloud/fix_timeout_issues_ocis_server_ci

[CI only] wait for oCIS server to be started
This commit is contained in:
Willy Kloucek
2020-12-15 12:38:14 +01:00
committed by GitHub

View File

@@ -1456,6 +1456,14 @@ def ocisServer(storage, accounts_hash_difficulty = 4, volumes=[]):
],
'volumes': volumes,
},
{
'name': 'wait-for-ocis-server',
'image': 'thegeeklab/wait-for:latest',
'pull': 'always',
'commands': [
'wait-for ocis-server:9200 -t 60',
],
},
]
def cloneCoreRepos(coreBranch, coreCommit):