Skip to content
Merged
Changes from 6 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
241807d
Allow multi-part inlay hint labels with location links
Aug 31, 2022
fcc6133
Remove alias definition naively
ice1000 Aug 23, 2022
79e5c36
Extract shared logic
ice1000 Aug 24, 2022
277df02
This should work, but I got mysterious errors
ice1000 Aug 24, 2022
37e20de
Address comments
ice1000 Aug 29, 2022
a695e90
Create `trait Removable`, replace `ted` APIs with builder APIs
ice1000 Sep 2, 2022
68eabf1
Fix test
ice1000 Sep 2, 2022
364d9c4
Fmt
ice1000 Sep 2, 2022
e295f0c
Insert whitespaces into static & const bodies if they are expanded fr…
ChayimFriedman2 Sep 4, 2022
26b5f1f
Do not insert a newline after `;` if the next token is a `}`
ChayimFriedman2 Sep 4, 2022
748567c
complete full struct in enum varaint
Austaras Sep 2, 2022
265c75c
fix: sort all bounds on trait object types
lowr Sep 5, 2022
a1c2653
Auto merge of #13091 - ice1k:hey, r=Veykril
bors Sep 5, 2022
4790916
Auto merge of #13139 - Austaras:enum, r=Veykril
bors Sep 5, 2022
5be2e65
Auto merge of #13185 - ChayimFriedman2:insert-ws-in-static-const-macr…
bors Sep 5, 2022
6dfd8ae
Auto merge of #13192 - lowr:fix/dyn-sort-all-bounds, r=Veykril
bors Sep 5, 2022
5d126a1
Use proc-macro-srv from sysroot in rust-project.json
Sep 7, 2022
6909556
Auto merge of #13200 - P1n3appl3:sysroot, r=Veykril
bors Sep 7, 2022
064c9ef
Make clicking closing brace hint go to the opening brace
Aug 31, 2022
c4eadab
Update crates/rust-analyzer/src/to_proto.rs
jonas-schievink Sep 8, 2022
4e1a3da
Auto merge of #13158 - jonas-schievink:inlayhint-links, r=jonas-schie…
bors Sep 8, 2022
c7fefd5
fix: add semicolon completion to mod
mehdiakiki Sep 8, 2022
bd3feea
fix: removed swap file
mehdiakiki Sep 8, 2022
b7e8b9a
Auto merge of #13207 - randomicon00:semicol#13196, r=lnicola
bors Sep 9, 2022
54fe5b7
use ubuntu 18.04 container for release
SpencerSharkey Sep 9, 2022
b843b88
revert conditional logic for apt update step
SpencerSharkey Sep 11, 2022
dd65588
install rustup directly
SpencerSharkey Sep 11, 2022
ae57150
add rustup bin to path
SpencerSharkey Sep 11, 2022
73d7599
use rustup minimal profile and add curl retries
SpencerSharkey Sep 11, 2022
2e9f120
Auto merge of #13214 - SpencerSharkey:ubuntu-container-build, r=lnicola
bors Sep 11, 2022
c93b070
:arrow_up: rust-analyzer
lnicola Sep 13, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
code-target: linux-x64
container: ubuntu:18.04
- os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
code-target: linux-arm64
Expand All @@ -49,6 +50,7 @@ jobs:

name: dist (${{ matrix.target }})
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}

env:
RA_TARGET: ${{ matrix.target }}
Expand All @@ -59,6 +61,14 @@ jobs:
with:
fetch-depth: ${{ env.FETCH_DEPTH }}

- name: Install toolchain dependencies
if: matrix.container == 'ubuntu:18.04'
shell: bash
run: |
apt-get update && apt-get install -y build-essential curl
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --profile minimal --default-toolchain none -y
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH

- name: Install Rust toolchain
run: |
rustup update --no-self-update stable
Expand Down