Skip to content

Commit 804ec5f

Browse files
committed
Execute docker/run.sh on Linux
1 parent 7b266ff commit 804ec5f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.azure-pipelines/steps/run.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,13 @@ steps:
6767
condition: and(succeeded(), eq(variables['IMAGE'], 'mingw-check'))
6868
displayName: Verify the publish_toolstate script works
6969

70-
- script: sh src/ci/run.sh
70+
- bash: |
71+
set -e
72+
if [ "$IMAGE" = ""]; then
73+
src/ci/run.sh
74+
else
75+
src/ci/docker/run.sh $IMAGE
76+
fi
7177
timeoutInMinutes: 180
7278
env:
7379
CI: true

0 commit comments

Comments
 (0)