Skip to content

Commit a4b40e6

Browse files
committed
feat: upgrade ubuntu builders
For `-gnu` triples, use 20.04, the current LTS. This upgrades the required version of glibc. For musl, just use `latest` as, presumably, we don't care about glibc version in that case.
1 parent eb32b60 commit a4b40e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585

8686
dist-x86_64-unknown-linux-gnu:
8787
name: dist (x86_64-unknown-linux-gnu)
88-
runs-on: ubuntu-18.04
88+
runs-on: ubuntu-20.04
8989
env:
9090
RA_TARGET: x86_64-unknown-linux-gnu
9191

@@ -125,7 +125,7 @@ jobs:
125125

126126
dist-x86_64-unknown-linux-musl:
127127
name: dist (x86_64-unknown-linux-musl)
128-
runs-on: ubuntu-20.04
128+
runs-on: ubuntu-latest
129129
env:
130130
RA_TARGET: x86_64-unknown-linux-musl
131131
# For some reason `-crt-static` is not working for clang without lld
@@ -155,7 +155,7 @@ jobs:
155155

156156
dist-aarch64-unknown-linux-gnu:
157157
name: dist (aarch64-unknown-linux-gnu)
158-
runs-on: ubuntu-18.04
158+
runs-on: ubuntu-20.04
159159
env:
160160
RA_TARGET: aarch64-unknown-linux-gnu
161161
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
@@ -256,7 +256,7 @@ jobs:
256256

257257
publish:
258258
name: publish
259-
runs-on: ubuntu-18.04
259+
runs-on: ubuntu-latest
260260
needs: ['dist-x86_64-pc-windows-msvc', 'dist-aarch64-pc-windows-msvc', 'dist-x86_64-unknown-linux-gnu', 'dist-x86_64-unknown-linux-musl', 'dist-aarch64-unknown-linux-gnu', 'dist-x86_64-apple-darwin', 'dist-aarch64-apple-darwin']
261261
steps:
262262
- name: Install Nodejs

0 commit comments

Comments
 (0)