Skip to content

Commit cdfe3fd

Browse files
committed
run in runner
1 parent 830467f commit cdfe3fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test-opencvsharp.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ jobs:
157157
if: matrix.image != ''
158158
run: |
159159
docker run -d --name builder -v "$PWD":${{ github.workspace }} -w ${{ github.workspace }} ${{ matrix.image }} tail -f /dev/null
160+
docker run -d --name runner -v "$PWD":${{ github.workspace }} -w ${{ github.workspace }} ${{ matrix.image }} tail -f /dev/null
160161
161162
- name: Install Dependencies in Docker Container
162163
if: matrix.image != ''
@@ -207,7 +208,7 @@ jobs:
207208
if [[ "${{ matrix.image }}" == "" ]]; then
208209
cd test && ./test.exe
209210
else
210-
docker exec builder bash -c "cd test && ./test.exe"
211+
docker exec runner bash -c "cd test && ./test.exe"
211212
fi
212213
213214
- name: Upload Artifacts

0 commit comments

Comments
 (0)