Skip to content

Commit 217feed

Browse files
committed
Fix CI
1 parent adf7d7b commit 217feed

File tree

2 files changed

+3
-16
lines changed

2 files changed

+3
-16
lines changed

.circleci/config.yml

-10
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,11 @@ jobs:
1111
steps:
1212
- checkout
1313
- run: make ci
14-
deploy:
15-
docker:
16-
- image: autozimu/rust-cross-for-macos
17-
steps:
18-
- checkout
19-
- run: |
20-
cargo build --target=x86_64-apple-darwin --release
21-
github-release upload --user autozimu --repo LanguageClient-neovim --tag test --name languageclient-x86_64-apple-darwin --file $CARGO_TARGET_DIR/x86_64-apple-darwin/release/languageclient
2214

2315
workflows:
2416
version: 2
2517
dev:
2618
jobs:
27-
- format
28-
- lint
2919
- build
3020

3121
# vim: tabstop=2

ci/Dockerfile

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.41-slim
1+
FROM rust:1.45-slim
22

33
RUN apt-get update \
44
&& apt-get install --yes --no-install-recommends neovim curl git python3-pip python3-pytest mypy flake8 npm make \
@@ -7,11 +7,8 @@ RUN apt-get update \
77

88
RUN python3 -m pip install neovim vim-vint
99

10-
RUN npm install -g [email protected]
11-
12-
RUN rustup component add rustfmt rls rust-analysis rust-src \
13-
&& rustc --version \
14-
&& rls --version
10+
RUN rustup toolchain install 1.45.0 --component rustfmt clippy \
11+
&& rustup show
1512
RUN curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-linux -o /usr/local/bin/rust-analyzer \
1613
&& chmod +x /usr/local/bin/rust-analyzer
1714

0 commit comments

Comments
 (0)