Skip to content

Commit 3c9dd3f

Browse files
author
Junfeng Li
committed
Try release macOS on CircleCI.
1 parent e58ae8f commit 3c9dd3f

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.circleci/config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,22 @@ jobs:
1111
steps:
1212
- checkout
1313
- 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+
# - build
1431

1532
# vim: tabstop=2

bin/.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
languageclient
2-
languageclient.exe
1+
*

0 commit comments

Comments
 (0)