1616jobs :
1717
1818 Lint :
19- runs-on : self-hosted
19+ runs-on : ubuntu-20.04
2020 env :
2121 GAIA_REPO : ${{ github.workspace }}
2222 steps :
3131 Core :
3232 needs :
3333 - Lint
34- runs-on : self-hosted
34+ runs-on : ubuntu-20.04
3535 env :
3636 GAIA_REPO : ${{ github.workspace }}
3737 steps :
5555 needs :
5656 - Lint
5757 if : github.event_name != 'pull_request'
58- runs-on : self-hosted
58+ runs-on : ubuntu-20.04
5959 env :
6060 GAIA_REPO : ${{ github.workspace }}
6161 steps :
7878 Debug_Core :
7979 needs :
8080 - Core
81- runs-on : self-hosted
81+ runs-on : ubuntu-20.04
8282 if : ${{ false }}
8383 env :
8484 GAIA_REPO : ${{ github.workspace }}
@@ -103,7 +103,7 @@ jobs:
103103 needs :
104104 - Core
105105 if : github.event_name != 'pull_request'
106- runs-on : self-hosted
106+ runs-on : ubuntu-20.04
107107 env :
108108 GAIA_REPO : ${{ github.workspace }}
109109 steps :
@@ -127,7 +127,7 @@ jobs:
127127 - Lint
128128 if : ${{ false }}
129129 timeout-minutes : 200
130- runs-on : self-hosted
130+ runs-on : ubuntu-20.04
131131 env :
132132 GAIA_REPO : ${{ github.workspace }}
133133 steps :
@@ -147,7 +147,7 @@ jobs:
147147 needs :
148148 - Lint
149149 if : ${{ false }}
150- runs-on : self-hosted
150+ runs-on : ubuntu-20.04
151151 env :
152152 GAIA_REPO : ${{ github.workspace }}
153153 steps :
@@ -170,9 +170,9 @@ jobs:
170170 Integration_Tests :
171171 needs :
172172 - SDK
173- # if: github.event_name != 'pull_request'
173+ # if: github.event_name != 'pull_request'
174174 if : ${{false}}
175- runs-on : self-hosted
175+ runs-on : ubuntu-20.04
176176 timeout-minutes : 7
177177 env :
178178 GAIA_REPO : ${{ github.workspace }}
@@ -217,7 +217,7 @@ jobs:
217217# Disabled due to inability to load libunwind.so.1 with Debug SDK.
218218# if: github.event_name != 'pull_request'
219219 if : ${{ false }}
220- runs-on : self-hosted
220+ runs-on : ubuntu-20.04
221221 timeout-minutes : 7
222222 env :
223223 GAIA_REPO : ${{ github.workspace }}
@@ -256,7 +256,7 @@ jobs:
256256 - Integration_Tests
257257 # if: github.event_name != 'pull_request'
258258 if : ${{false}}
259- runs-on : self-hosted
259+ runs-on : ubuntu-20.04
260260 timeout-minutes : 10
261261 env :
262262 GAIA_REPO : ${{ github.workspace }}
@@ -292,7 +292,7 @@ jobs:
292292
293293 Integration_Samples :
294294 needs : SDK
295- runs-on : self-hosted
295+ runs-on : ubuntu-20.04
296296 if : github.event_name != 'pull_request'
297297 env :
298298 GAIA_REPO : ${{ github.workspace }}
@@ -314,6 +314,8 @@ jobs:
314314 - name : Tests
315315 working-directory : ${{ github.workspace }}
316316 run : |
317+ if pgrep ssh-agent; then pkill ssh-agent; fi
318+ ssh-agent -a $SSH_AUTH_SOCK > /dev/null 2>&1
317319 $GAIA_REPO/dev_tools/github-actions/execute_tests_against_package.sh \
318320 --verbose \
319321 --job-name $GITHUB_JOB \
@@ -332,7 +334,7 @@ jobs:
332334 needs :
333335 - Lint
334336 if : ${{ false }}
335- runs-on : self-hosted
337+ runs-on : ubuntu-20.04
336338 env :
337339 GAIA_REPO : ${{ github.workspace }}
338340 steps :
@@ -357,7 +359,7 @@ jobs:
357359# - Performance_Tests
358360 - Integration_Samples
359361# - Documentation
360- runs-on : self-hosted
362+ runs-on : ubuntu-20.04
361363 steps :
362364 - uses : geekyeggo/delete-artifact@v1
363365 with :
0 commit comments