mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-26 11:55:04 +00:00
Remove needless dep
This commit is contained in:
parent
8ac7a180cf
commit
1e305b89ed
3 changed files with 5 additions and 19 deletions
9
.github/workflows/ci.yaml
vendored
9
.github/workflows/ci.yaml
vendored
|
@ -74,15 +74,10 @@ jobs:
|
||||||
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
|
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
- name: Compile
|
- name: Compile
|
||||||
uses: actions-rs/cargo@v1
|
run: cargo test --no-run
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
args: --no-run
|
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
uses: actions-rs/cargo@v1
|
run: cargo test
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
|
|
||||||
- name: Prepare cache
|
- name: Prepare cache
|
||||||
run: cargo xtask pre-cache
|
run: cargo xtask pre-cache
|
||||||
|
|
10
.github/workflows/release.yaml
vendored
10
.github/workflows/release.yaml
vendored
|
@ -43,19 +43,13 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
uses: actions-rs/cargo@v1
|
run: cargo build --package rust-analyzer --bin rust-analyzer --release --target x86_64-unknown-linux-musl
|
||||||
env:
|
env:
|
||||||
CC: clang
|
CC: clang
|
||||||
with:
|
|
||||||
command: build
|
|
||||||
args: --package rust-analyzer --bin rust-analyzer --release --target x86_64-unknown-linux-musl
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
if: matrix.os != 'ubuntu-latest'
|
if: matrix.os != 'ubuntu-latest'
|
||||||
uses: actions-rs/cargo@v1
|
run: cargo build --package rust-analyzer --bin rust-analyzer --release
|
||||||
with:
|
|
||||||
command: build
|
|
||||||
args: --package rust-analyzer --bin rust-analyzer --release
|
|
||||||
|
|
||||||
- name: Create distribution dir
|
- name: Create distribution dir
|
||||||
run: mkdir ./dist
|
run: mkdir ./dist
|
||||||
|
|
5
.github/workflows/rustdoc.yaml
vendored
5
.github/workflows/rustdoc.yaml
vendored
|
@ -24,10 +24,7 @@ jobs:
|
||||||
components: rustfmt, rust-src
|
components: rustfmt, rust-src
|
||||||
|
|
||||||
- name: Build Documentation
|
- name: Build Documentation
|
||||||
uses: actions-rs/cargo@v1
|
run: cargo doc --all --no-deps
|
||||||
with:
|
|
||||||
command: doc
|
|
||||||
args: --all --no-deps
|
|
||||||
|
|
||||||
- name: Deploy Docs
|
- name: Deploy Docs
|
||||||
uses: peaceiris/actions-gh-pages@v2.6.0-rc0
|
uses: peaceiris/actions-gh-pages@v2.6.0-rc0
|
||||||
|
|
Loading…
Reference in a new issue