Skip to content

Commit 981b151

Browse files
committed
fix(integration_test)
Signed-off-by: Marcel Klehr <[email protected]>
1 parent 9ead594 commit 981b151

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
php-versions: [ '8.1' ]
3030
databases: [ 'sqlite' ]
31-
server-versions: [ 'master', 'stable31', 'stable30' ]
31+
server-versions: [ 'master', 'stable31' ]
3232

3333
name: Integration test on ☁️${{ matrix.server-versions }} 🐘${{ matrix.php-versions }}
3434

@@ -198,7 +198,7 @@ jobs:
198198
TASK_ID=$(echo $TASK | jq '.ocs.data.task.id')
199199
NEXT_WAIT_TIME=0
200200
TASK_STATUS='"STATUS_SCHEDULED"'
201-
until [ $NEXT_WAIT_TIME -eq 35 ] || [ "$TASK_STATUS" == '"STATUS_SUCCESSFUL"' ] || [ "$TASK_STATUS" == '"STATUS_FAILED"' ]; do
201+
until [ $NEXT_WAIT_TIME -eq 59 ] || [ "$TASK_STATUS" == '"STATUS_SUCCESSFUL"' ] || [ "$TASK_STATUS" == '"STATUS_FAILED"' ]; do
202202
TASK=$(curl -u "$CREDS" -H "oCS-APIRequest: true" http://localhost:8080/ocs/v2.php/taskprocessing/task/$TASK_ID?format=json)
203203
echo $TASK
204204
TASK_STATUS=$(echo $TASK | jq '.ocs.data.task.status')

0 commit comments

Comments
 (0)