From 7d8f2aafe577ac31136c15a4e6d925457eff7dcb Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Tue, 13 Nov 2018 12:12:02 -0800 Subject: [PATCH] Improved build script for macos --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ee3cbbb29..7871bf516 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -57,7 +57,7 @@ jobs: cargo --version - run: name: Execute tests - command: + command: | export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH" export PATH="$HOME/.cargo/bin:$PATH" make test @@ -68,8 +68,8 @@ jobs: export PATH="$HOME/.cargo/bin:$PATH" make release mkdir -p artifacts - VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2) - echo "${VERSION}" >> artifacts/version + # VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2) + # echo "${VERSION}" >> artifacts/version cp ./target/release/wasmer ./artifacts/$(./binary-name.sh) - persist_to_workspace: root: .