mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
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.
This commit is contained in:
parent
eb32b60dc7
commit
a4b40e60cb
1 changed files with 4 additions and 4 deletions
8
.github/workflows/release.yaml
vendored
8
.github/workflows/release.yaml
vendored
|
@ -85,7 +85,7 @@ jobs:
|
|||
|
||||
dist-x86_64-unknown-linux-gnu:
|
||||
name: dist (x86_64-unknown-linux-gnu)
|
||||
runs-on: ubuntu-18.04
|
||||
runs-on: ubuntu-20.04
|
||||
env:
|
||||
RA_TARGET: x86_64-unknown-linux-gnu
|
||||
|
||||
|
@ -125,7 +125,7 @@ jobs:
|
|||
|
||||
dist-x86_64-unknown-linux-musl:
|
||||
name: dist (x86_64-unknown-linux-musl)
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
RA_TARGET: x86_64-unknown-linux-musl
|
||||
# For some reason `-crt-static` is not working for clang without lld
|
||||
|
@ -155,7 +155,7 @@ jobs:
|
|||
|
||||
dist-aarch64-unknown-linux-gnu:
|
||||
name: dist (aarch64-unknown-linux-gnu)
|
||||
runs-on: ubuntu-18.04
|
||||
runs-on: ubuntu-20.04
|
||||
env:
|
||||
RA_TARGET: aarch64-unknown-linux-gnu
|
||||
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
|
||||
|
@ -256,7 +256,7 @@ jobs:
|
|||
|
||||
publish:
|
||||
name: publish
|
||||
runs-on: ubuntu-18.04
|
||||
runs-on: ubuntu-latest
|
||||
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']
|
||||
steps:
|
||||
- name: Install Nodejs
|
||||
|
|
Loading…
Reference in a new issue