|
34 | 34 | - { os: rhel.8, arch: arm64, runs-on: ubuntu-22.04-arm, image: oraclelinux:8 } |
35 | 35 | - { os: rhel.9, arch: x64, runs-on: ubuntu-22.04, image: oraclelinux:9 } |
36 | 36 | - { os: rhel.9, arch: arm64, runs-on: ubuntu-22.04-arm, image: oraclelinux:9 } |
37 | | - # - { os: android, arch: arm64, runs-on: ubuntu-22.04 } |
38 | | - # - { os: android, arch: x64, runs-on: ubuntu-22.04 } |
| 37 | + - { os: android, arch: arm64, runs-on: ubuntu-22.04 } |
| 38 | + - { os: android, arch: x64, runs-on: ubuntu-22.04 } |
39 | 39 |
|
40 | 40 | steps: |
41 | 41 | - name: Download OpenCvSharp Artifacts |
@@ -157,7 +157,6 @@ jobs: |
157 | 157 | if: matrix.image != '' |
158 | 158 | run: | |
159 | 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 | 160 |
|
162 | 161 | - name: Install Dependencies in Docker Container |
163 | 162 | if: matrix.image != '' |
@@ -208,7 +207,7 @@ jobs: |
208 | 207 | if [[ "${{ matrix.image }}" == "" ]]; then |
209 | 208 | cd test && ./test.exe |
210 | 209 | else |
211 | | - docker exec runner bash -c "cd test && ./test.exe" |
| 210 | + docker run -d --name runner -v "$PWD":${{ github.workspace }} -w ${{ github.workspace }} ${{ matrix.image }} bash -c "cd test && ./test.exe" |
212 | 211 | fi |
213 | 212 |
|
214 | 213 | - name: Upload Artifacts |
|
0 commit comments