@@ -19,7 +19,7 @@ defaults:
19
19
20
20
jobs :
21
21
changelog :
22
- runs-on : ubuntu-20.04
22
+ runs-on : ubuntu-latest
23
23
24
24
steps :
25
25
- uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
@@ -53,12 +53,12 @@ jobs:
53
53
needs : changelog
54
54
strategy :
55
55
matrix :
56
- os : [ubuntu-20.04 , windows-latest, macos-latest]
56
+ os : [ubuntu-latest , windows-latest, macos-latest]
57
57
host : [x86_64-unknown-linux-gnu, i686-unknown-linux-gnu, x86_64-apple-darwin, x86_64-pc-windows-msvc]
58
58
exclude :
59
- - os : ubuntu-20.04
59
+ - os : ubuntu-latest
60
60
host : x86_64-apple-darwin
61
- - os : ubuntu-20.04
61
+ - os : ubuntu-latest
62
62
host : x86_64-pc-windows-msvc
63
63
- os : macos-latest
64
64
host : x86_64-unknown-linux-gnu
82
82
with :
83
83
github_token : " ${{ secrets.github_token }}"
84
84
85
- - name : Install dependencies (Linux-i686)
86
- run : |
87
- sudo dpkg --add-architecture i386
88
- sudo apt-get update
89
- sudo apt-get install gcc-multilib libssl-dev:i386 libgit2-dev:i386
90
- if : matrix.host == 'i686-unknown-linux-gnu'
91
-
92
85
- name : Checkout
93
86
94
87
@@ -147,7 +140,7 @@ jobs:
147
140
148
141
metadata_collection :
149
142
needs : changelog
150
- runs-on : ubuntu-20.04
143
+ runs-on : ubuntu-latest
151
144
152
145
steps :
153
146
# Setup
@@ -166,7 +159,7 @@ jobs:
166
159
167
160
integration_build :
168
161
needs : changelog
169
- runs-on : ubuntu-20.04
162
+ runs-on : ubuntu-latest
170
163
171
164
steps :
172
165
# Setup
@@ -224,7 +217,7 @@ jobs:
224
217
- ' rust-lang-nursery/failure'
225
218
- ' rust-lang/log'
226
219
227
- runs-on : ubuntu-20.04
220
+ runs-on : ubuntu-latest
228
221
229
222
steps :
230
223
# Setup
@@ -265,7 +258,7 @@ jobs:
265
258
end-success :
266
259
name : bors test finished
267
260
if : github.event.pusher.name == 'bors' && success()
268
- runs-on : ubuntu-20.04
261
+ runs-on : ubuntu-latest
269
262
needs : [changelog, base, metadata_collection, integration_build, integration]
270
263
271
264
steps :
@@ -275,7 +268,7 @@ jobs:
275
268
end-failure :
276
269
name : bors test finished
277
270
if : github.event.pusher.name == 'bors' && (failure() || cancelled())
278
- runs-on : ubuntu-20.04
271
+ runs-on : ubuntu-latest
279
272
needs : [changelog, base, metadata_collection, integration_build, integration]
280
273
281
274
steps :
0 commit comments