File tree 2 files changed +3
-16
lines changed
2 files changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,11 @@ jobs:
11
11
steps :
12
12
- checkout
13
13
- 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
22
14
23
15
workflows :
24
16
version : 2
25
17
dev :
26
18
jobs :
27
- - format
28
- - lint
29
19
- build
30
20
31
21
# vim: tabstop=2
Original file line number Diff line number Diff line change 1
- FROM rust:1.41 -slim
1
+ FROM rust:1.45 -slim
2
2
3
3
RUN apt-get update \
4
4
&& 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 \
7
7
8
8
RUN python3 -m pip install neovim vim-vint
9
9
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
15
12
RUN curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-linux -o /usr/local/bin/rust-analyzer \
16
13
&& chmod +x /usr/local/bin/rust-analyzer
17
14
You can’t perform that action at this time.
0 commit comments