File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: [push, pull_request]
4
4
5
5
jobs :
6
6
Test :
7
- runs-on : ubuntu-latest
7
+ runs-on : ubuntu-22.04
8
8
strategy :
9
9
matrix :
10
10
python-version : [3.8, 3.9, "3.10", "3.11"]
28
28
run : pytest -v --cov=adi
29
29
30
30
Test-Emulated-HW :
31
- runs-on : ubuntu-latest
31
+ runs-on : ubuntu-22.04
32
32
strategy :
33
33
fail-fast : false
34
34
matrix :
67
67
files : results.xml
68
68
69
69
Lint :
70
- runs-on : ubuntu-latest
70
+ runs-on : ubuntu-22.04
71
71
strategy :
72
72
fail-fast : false
73
73
matrix :
94
94
exit $ec
95
95
96
96
Doc :
97
- runs-on : ubuntu-latest
97
+ runs-on : ubuntu-22.04
98
98
99
99
steps :
100
100
- uses : actions/checkout@v2
@@ -116,7 +116,7 @@ jobs:
116
116
cd ..
117
117
118
118
DeployMainDoc :
119
- runs-on : ubuntu-latest
119
+ runs-on : ubuntu-22.04
120
120
needs : [Test,Lint,Doc]
121
121
if : github.ref == 'refs/heads/main'
122
122
@@ -148,7 +148,7 @@ jobs:
148
148
destination_dir : main
149
149
150
150
DeployDevelopmentDoc :
151
- runs-on : ubuntu-latest
151
+ runs-on : ubuntu-22.04
152
152
needs : [Test,Lint,Doc]
153
153
# Only run on pull requests to main and non-forks
154
154
if : github.event_name == 'pull_request' && github.base_ref == 'main' && ! github.event.pull_request.head.repo.fork
@@ -188,7 +188,7 @@ jobs:
188
188
Generated documentation for this PR is available at [Link](https://analogdevicesinc.github.io/pyadi-iio/prs/${{ github.head_ref }}/index.html)
189
189
190
190
Deploy :
191
- runs-on : ubuntu-latest
191
+ runs-on : ubuntu-22.04
192
192
needs : [Test,Lint,Doc]
193
193
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
194
194
You can’t perform that action at this time.
0 commit comments