We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 830467f commit cdfe3fdCopy full SHA for cdfe3fd
.github/workflows/test-opencvsharp.yml
@@ -157,6 +157,7 @@ jobs:
157
if: matrix.image != ''
158
run: |
159
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
161
162
- name: Install Dependencies in Docker Container
163
@@ -207,7 +208,7 @@ jobs:
207
208
if [[ "${{ matrix.image }}" == "" ]]; then
209
cd test && ./test.exe
210
else
- docker exec builder bash -c "cd test && ./test.exe"
211
+ docker exec runner bash -c "cd test && ./test.exe"
212
fi
213
214
- name: Upload Artifacts
0 commit comments