We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e58ae8f commit 3c9dd3fCopy full SHA for 3c9dd3f
.circleci/config.yml
@@ -11,5 +11,22 @@ jobs:
11
steps:
12
- checkout
13
- run: make test && make integration-test
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
+
23
+# workflows:
24
+# version: 2
25
+# build-and-deploy:
26
+# jobs:
27
+# - build
28
+# - deploy:
29
+# requires:
30
31
32
# vim: tabstop=2
bin/.gitignore
@@ -1,2 +1 @@
1
-languageclient
2
-languageclient.exe
+*
0 commit comments