Merge pull request #1252 from zed-industries/plugin

Language Server WebAssembly Plugin Integration (Part 2)
This commit is contained in:
Antonio Scandurra
2022-07-12 11:04:20 +02:00
committed by GitHub
41 changed files with 3683 additions and 1196 deletions

View File

@@ -28,7 +28,15 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-apple-darwin
target: aarch64-apple-darwin
profile: minimal
default: true
- name: Install Rust wasm32-wasi target
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-wasi
profile: minimal
- name: Install Node
@@ -58,18 +66,26 @@ jobs:
APPLE_NOTARIZATION_USERNAME: ${{ secrets.APPLE_NOTARIZATION_USERNAME }}
APPLE_NOTARIZATION_PASSWORD: ${{ secrets.APPLE_NOTARIZATION_PASSWORD }}
steps:
- name: Install Rust aarch64-apple-darwin target
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: aarch64-apple-darwin
profile: minimal
default: true
- name: Install Rust x86_64-apple-darwin target
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-apple-darwin
profile: minimal
- name: Install Rust aarch64-apple-darwin target
- name: Install Rust wasm32-wasi target
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: aarch64-apple-darwin
target: wasm32-wasi
profile: minimal
- name: Install Node