diff --git a/.circleci/config.yml b/.circleci/config.yml index fb59c7f2..8a7c9b5d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,4 +27,4 @@ jobs: - target/debug/deps key: v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }} # module test cases - - run: cd ~/edgeware && cargo test --all \ No newline at end of file + - run: cd ~/edgeware && source ./.cargo/env && cargo test --all diff --git a/README.md b/README.md index 82665e53..6f33feec 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -[![CircleCI](https://circleci.com/gh/hicommonwealth/edgeware-node/tree/master.svg?style=svg)](https://circleci.com/gh/hicommonwealth/edgeware-node/tree/master) - # edgeware-node A Parity Substrate node implementing [Edgeware](https://edgewa.re). diff --git a/setup.sh b/setup.sh index 825509dd..8812773e 100755 --- a/setup.sh +++ b/setup.sh @@ -8,7 +8,7 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then echo "Running apt as sudo" SUDO_PREFIX='sudo' fi - $SUDO_PREFIX apt install -y cmake pkg-config libssl-dev git clang libclang-dev + $SUDO_PREFIX apt install -y build-essential cmake pkg-config libssl-dev openssl git clang libclang-dev elif [[ "$OSTYPE" == "darwin"* ]]; then echo "Found macbook" brew install cmake pkg-config openssl git llvm