Skip to content

Commit 00bfd6b

Browse files
committed
Auto merge of rust-lang#117985 - lnicola:sync-from-ra, r=lnicola
Subtree update of `rust-analyzer` r? `@ghost` Out of band, but required for rust-lang#117981.
2 parents 4770d91 + 949870c commit 00bfd6b

File tree

131 files changed

+2212
-970
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+2212
-970
lines changed

src/tools/rust-analyzer/.github/workflows/release.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
code-target: win32-x64
3131
- os: windows-latest
3232
target: i686-pc-windows-msvc
33-
code-target: win32-ia32
3433
- os: windows-latest
3534
target: aarch64-pc-windows-msvc
3635
code-target: win32-arm64
@@ -102,12 +101,12 @@ jobs:
102101
working-directory: editors/code
103102

104103
- name: Package Extension (release)
105-
if: github.ref == 'refs/heads/release'
104+
if: github.ref == 'refs/heads/release' && matrix.code-target
106105
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }}
107106
working-directory: editors/code
108107

109108
- name: Package Extension (nightly)
110-
if: github.ref != 'refs/heads/release'
109+
if: github.ref != 'refs/heads/release' && matrix.code-target
111110
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }} --pre-release
112111
working-directory: editors/code
113112

0 commit comments

Comments
 (0)