mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Tweak release workflow
This commit is contained in:
parent
7d4a62275d
commit
7e1a25f149
1 changed files with 13 additions and 41 deletions
54
.github/workflows/release.yaml
vendored
54
.github/workflows/release.yaml
vendored
|
@ -1,9 +1,8 @@
|
|||
name: CI-Release
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- release
|
||||
|
||||
jobs:
|
||||
rust:
|
||||
|
@ -15,7 +14,6 @@ jobs:
|
|||
env:
|
||||
RUSTFLAGS: -D warnings
|
||||
CARGO_INCREMENTAL: 0
|
||||
RUN_SLOW_TESTS: 1
|
||||
RUSTUP_MAX_RETRIES: 10
|
||||
CARGO_NET_RETRY: 10
|
||||
steps:
|
||||
|
@ -39,47 +37,26 @@ jobs:
|
|||
override: true
|
||||
components: rustfmt, rust-src
|
||||
|
||||
- name: Cache cargo registry
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/registry
|
||||
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Cache cargo index
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/git
|
||||
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Cache cargo target dir
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: target
|
||||
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Compile and Test
|
||||
- name: Build
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: test
|
||||
args: --release --all-targets
|
||||
command: build
|
||||
args: --release --package ra_lsp_server --bin ra_lsp_server
|
||||
|
||||
- name: Prepare cache
|
||||
run: cargo xtask pre-cache
|
||||
- name: Strip symbols
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: strip ./target/release/ra_lsp_server
|
||||
|
||||
- name: Prepare cache 2
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: Remove-Item ./target/release/xtask.exe
|
||||
|
||||
- name: Creat distribution dir
|
||||
- name: Create distribution dir
|
||||
run: mkdir ./dist
|
||||
|
||||
- name: Copy binaries (non-win)
|
||||
- name: Copy binaries (unix)
|
||||
if: matrix.os != 'windows-latest'
|
||||
run: cp ./target/release/ra_lsp_server ./dist
|
||||
|
||||
- name: Copy binaries (win)
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: copy ./target/release/ra_lsp_server.* ./dist
|
||||
run: copy ./target/release/ra_lsp_server.exe ./dist
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
|
@ -90,9 +67,6 @@ jobs:
|
|||
type-script:
|
||||
name: TypeScript
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CXX: g++-4.9
|
||||
CC: gcc-4.9
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v1
|
||||
|
@ -104,14 +78,12 @@ jobs:
|
|||
|
||||
- run: npm ci
|
||||
working-directory: ./editors/code
|
||||
|
||||
- run: npm run package --scripts-prepend-node-path
|
||||
working-directory: ./editors/code
|
||||
|
||||
- name: Create distribution directory
|
||||
run: mkdir ./dist
|
||||
|
||||
- name: Copy vscode extension
|
||||
run: mkdir ./dist/code && cp ./editors/code/*.vsix ./dist/code/
|
||||
run: mkdir -p ./dist/code && cp ./editors/code/*.vsix ./dist/code/
|
||||
|
||||
- name: Copy emacs mode
|
||||
run: cp -R ./editors/emacs ./dist/
|
||||
|
@ -119,5 +91,5 @@ jobs:
|
|||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: editors
|
||||
name: editor-plugins
|
||||
path: ./dist
|
||||
|
|
Loading…
Reference in a new issue