Skip to content

Commit

Permalink
update circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
Yarn committed Oct 21, 2019
1 parent 825b4d6 commit e57d4e0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
command: sudo ln -s `pwd` /project
- restore_cache:
keys:
- v7-cargo-cache-arm-{{ arch }}-{{ checksum "Cargo.lock" }}
- v8-cargo-cache-arm-{{ arch }}-{{ checksum "Cargo.lock" }}
- run:
name: Version information
command: rustc --version; cargo --version; rustup --version
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
cargo build --target=$TARGET --release
- run:
name: prepare release zip
command: zip --junk-paths "release/$CIRCLE_PROJECT_REPONAME-$CIRCLE_TAG-armv7-unknown-linux-musleabihf.zip" ./target/armv7-unknown-linux-musleabihf/release/listen-moe-cli
command: zip --junk-paths "release/$CIRCLE_PROJECT_REPONAME-$CIRCLE_TAG-arm-unknown-linux-gnueabihf.zip" ./target/arm-unknown-linux-gnueabihf/release/listen-moe-cli
- store_artifacts:
# path: ./target/x86_64-unknown-linux-gnu/release/listen-moe-cli
path: ./release
Expand All @@ -127,9 +127,10 @@ jobs:
- save_cache:
paths:
- /usr/local/cargo/registry
- /usr/local/rustup
- target
# - /usr/local/rustup
key: v7-cargo-cache-arm-{{ arch }}-{{ checksum "Cargo.lock" }}
key: v8-cargo-cache-arm-{{ arch }}-{{ checksum "Cargo.lock" }}

publish-github-release:
docker:
Expand Down

0 comments on commit e57d4e0

Please sign in to comment.