mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
Disable win32-ia32 VSIX builds
This commit is contained in:
parent
f888a6eb5f
commit
fb70fe27d4
1 changed files with 2 additions and 3 deletions
5
.github/workflows/release.yaml
vendored
5
.github/workflows/release.yaml
vendored
|
@ -30,7 +30,6 @@ jobs:
|
||||||
code-target: win32-x64
|
code-target: win32-x64
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
target: i686-pc-windows-msvc
|
target: i686-pc-windows-msvc
|
||||||
code-target: win32-ia32
|
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
target: aarch64-pc-windows-msvc
|
target: aarch64-pc-windows-msvc
|
||||||
code-target: win32-arm64
|
code-target: win32-arm64
|
||||||
|
@ -102,12 +101,12 @@ jobs:
|
||||||
working-directory: editors/code
|
working-directory: editors/code
|
||||||
|
|
||||||
- name: Package Extension (release)
|
- name: Package Extension (release)
|
||||||
if: github.ref == 'refs/heads/release'
|
if: github.ref == 'refs/heads/release' && matrix.code-target
|
||||||
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }}
|
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }}
|
||||||
working-directory: editors/code
|
working-directory: editors/code
|
||||||
|
|
||||||
- name: Package Extension (nightly)
|
- name: Package Extension (nightly)
|
||||||
if: github.ref != 'refs/heads/release'
|
if: github.ref != 'refs/heads/release' && matrix.code-target
|
||||||
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }} --pre-release
|
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }} --pre-release
|
||||||
working-directory: editors/code
|
working-directory: editors/code
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue