2020-01-29 12:19:51 +00:00
|
|
|
name: release
|
2020-01-09 20:21:07 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-01-11 20:48:30 +00:00
|
|
|
- release
|
2020-01-09 20:21:07 +00:00
|
|
|
|
|
|
|
jobs:
|
2020-01-13 11:44:22 +00:00
|
|
|
build-server:
|
|
|
|
name: build-server
|
2020-01-09 20:21:07 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
env:
|
|
|
|
RUSTFLAGS: -D warnings
|
|
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
RUSTUP_MAX_RETRIES: 10
|
|
|
|
CARGO_NET_RETRY: 10
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
# We need to disable the existing toolchain to avoid updating rust-docs
|
|
|
|
# which takes a long time. The fastest way to do this is to rename the
|
|
|
|
# existing folder, as deleting it takes about as much time as not doing
|
|
|
|
# anything and just updating rust-docs.
|
|
|
|
- name: Rename existing rust toolchain (Windows)
|
|
|
|
if: matrix.os == 'windows-latest'
|
|
|
|
run: Rename-Item C:\Users\runneradmin\.rustup\toolchains\stable-x86_64-pc-windows-msvc C:\Users\runneradmin\.rustup\toolchains\stable-x86_64-pc-windows-msvc.old
|
|
|
|
|
|
|
|
- name: Install Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
profile: minimal
|
2020-01-13 13:53:09 +00:00
|
|
|
target: x86_64-unknown-linux-musl
|
2020-01-09 20:21:07 +00:00
|
|
|
override: true
|
|
|
|
|
2020-01-11 20:48:30 +00:00
|
|
|
- name: Build
|
2020-01-13 14:03:07 +00:00
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2020-01-09 20:21:07 +00:00
|
|
|
uses: actions-rs/cargo@v1
|
2020-01-13 14:03:07 +00:00
|
|
|
env:
|
|
|
|
CC: clang
|
2020-01-09 20:21:07 +00:00
|
|
|
with:
|
2020-01-11 20:48:30 +00:00
|
|
|
command: build
|
2020-01-13 14:03:07 +00:00
|
|
|
args: --package ra_lsp_server --bin ra_lsp_server --release --target x86_64-unknown-linux-musl
|
2020-01-09 20:21:07 +00:00
|
|
|
|
2020-01-13 14:03:07 +00:00
|
|
|
- name: Build
|
|
|
|
if: matrix.os != 'ubuntu-latest'
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --package ra_lsp_server --bin ra_lsp_server --release
|
2020-01-09 20:21:07 +00:00
|
|
|
|
2020-01-11 20:48:30 +00:00
|
|
|
- name: Create distribution dir
|
2020-01-09 20:21:07 +00:00
|
|
|
run: mkdir ./dist
|
|
|
|
|
2020-01-13 11:44:22 +00:00
|
|
|
- name: Copy binary
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2020-01-13 14:03:07 +00:00
|
|
|
run: cp ./target/x86_64-unknown-linux-musl/release/ra_lsp_server ./dist/ra_lsp_server-linux && strip ./dist/ra_lsp_server-linux
|
2020-01-13 11:44:22 +00:00
|
|
|
|
|
|
|
- name: Copy binary
|
|
|
|
if: matrix.os == 'macos-latest'
|
|
|
|
run: cp ./target/release/ra_lsp_server ./dist/ra_lsp_server-mac
|
2020-01-09 20:21:07 +00:00
|
|
|
|
2020-01-13 11:44:22 +00:00
|
|
|
- name: Copy binary
|
2020-01-09 20:21:07 +00:00
|
|
|
if: matrix.os == 'windows-latest'
|
2020-01-13 11:44:22 +00:00
|
|
|
run: copy ./target/release/ra_lsp_server.exe ./dist/ra_lsp_server-windows.exe
|
2020-01-09 20:21:07 +00:00
|
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2020-01-09 21:11:52 +00:00
|
|
|
name: server-${{ matrix.os }}
|
2020-01-09 20:21:07 +00:00
|
|
|
path: ./dist
|
|
|
|
|
2020-01-13 11:44:22 +00:00
|
|
|
build-clients:
|
|
|
|
name: build-clients
|
2020-01-09 20:21:07 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Install Nodejs
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
|
|
|
|
- run: npm ci
|
|
|
|
working-directory: ./editors/code
|
2020-01-11 20:48:30 +00:00
|
|
|
|
2020-01-09 20:21:07 +00:00
|
|
|
- run: npm run package --scripts-prepend-node-path
|
|
|
|
working-directory: ./editors/code
|
|
|
|
|
|
|
|
- name: Copy vscode extension
|
2020-01-13 11:44:22 +00:00
|
|
|
run: mkdir -p ./dist/code && cp ./editors/code/*.vsix ./dist/
|
2020-01-09 20:21:07 +00:00
|
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2020-01-11 20:48:30 +00:00
|
|
|
name: editor-plugins
|
2020-01-09 20:21:07 +00:00
|
|
|
path: ./dist
|
2020-01-13 11:44:22 +00:00
|
|
|
|
|
|
|
make-release:
|
|
|
|
name: make-release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: ['build-server', 'build-clients']
|
|
|
|
steps:
|
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: editor-plugins
|
|
|
|
path: dist
|
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: server-macos-latest
|
|
|
|
path: dist
|
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: server-ubuntu-latest
|
|
|
|
path: dist
|
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: server-windows-latest
|
|
|
|
path: dist
|
|
|
|
- run: ls -all ./dist
|
|
|
|
|
|
|
|
- run: echo "::set-env name=TAG::$(date --iso)"
|
|
|
|
- run: 'echo "TAG: $TAG"'
|
|
|
|
|
|
|
|
- name: Create Release
|
|
|
|
id: create_release
|
2020-01-29 12:19:51 +00:00
|
|
|
# uses: actions/create-release@v1
|
|
|
|
# https://github.com/actions/create-release/pull/32
|
|
|
|
uses: fleskesvor/create-release@1a72e235c178bf2ae6c51a8ae36febc24568c5fe
|
2020-01-13 11:44:22 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
tag_name: ${{ env.TAG }}
|
|
|
|
release_name: ${{ env.TAG }}
|
|
|
|
draft: false
|
|
|
|
prerelease: false
|
|
|
|
|
|
|
|
- uses: actions/upload-release-asset@v1.0.1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./dist/ra_lsp_server-linux
|
|
|
|
asset_name: ra_lsp_server-linux
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- uses: actions/upload-release-asset@v1.0.1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./dist/ra_lsp_server-mac
|
|
|
|
asset_name: ra_lsp_server-mac
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- uses: actions/upload-release-asset@v1.0.1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./dist/ra_lsp_server-windows.exe
|
|
|
|
asset_name: ra_lsp_server-windows.exe
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- uses: actions/upload-release-asset@v1.0.1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./dist/rust-analyzer-0.1.0.vsix
|
|
|
|
asset_name: rust-analyzer-0.1.0.vsix
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- uses: actions/upload-release-asset@v1.0.1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./dist/rust-analyzer.el
|
|
|
|
asset_name: rust-analyzer.el
|
|
|
|
asset_content_type: text/plain
|