@@ -104,20 +104,20 @@ jobs:
104104 path : releng/ide-dmg-builder/Espressif-IDE-macosx-cocoa-aarch64.dmg
105105
106106 build_and_test :
107- strategy:
108- matrix:
109- include:
110- - os: linux
111- runner: [self-hosted, eclipse, BrnoUBU0004]
112- testWorkspace: /opt/actions-runner/_work/workspace
113- reportName: Linux Test Reports
114- - os: windows
115- runner: [self-hosted, eclipseUpd, BrnoWIN0007]
116- testWorkspace: C:/actions-runner/_work/workspace
117- reportName: Windows Test Reports
118- fail-fast: false
119-
120- runs-on: ${{ matrix.runner }}
107+ strategy :
108+ matrix :
109+ include :
110+ - os : linux
111+ runner : [self-hosted, eclipse, BrnoUBU0004]
112+ testWorkspace : /opt/actions-runner/_work/workspace
113+ reportName : Linux Test Reports
114+ - os : windows
115+ runner : [self-hosted, eclipseUpd, BrnoWIN0007]
116+ testWorkspace : C:/actions-runner/_work/workspace
117+ reportName : Windows Test Reports
118+ fail-fast : false
119+
120+ runs-on : ${{ matrix.runner }}
121121
122122 steps :
123123 - uses : actions/checkout@v4
@@ -140,8 +140,10 @@ jobs:
140140
141141 - name : Run Tests
142142 run : |
143- export NO_AT_BRIDGE=1
144- mvn verify -Djarsigner.skip=true -DskipTests=false -DtestWorkspace="${{ matrix.testWorkspace }}"
143+ if [ "${{ matrix.os }}" = "linux" ]; then
144+ export NO_AT_BRIDGE=1
145+ fi
146+ mvn verify -Djarsigner.skip=true -DskipTests=false -DtestWorkspace="${{ matrix.testWorkspace }}"
145147
146148 - name : Publish Test Reports
147149 if : ${{ always() }}
0 commit comments