From ca4f874f526b28593e14a1c253965c8a1e484950 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 15 Mar 2019 15:09:21 -0700 Subject: [PATCH] Remove ci/run-local.sh --- README.md | 6 ------ ci/run-local.sh | 20 -------------------- 2 files changed, 26 deletions(-) delete mode 100755 ci/run-local.sh diff --git a/README.md b/README.md index e19ae3059c..c6ecda4584 100644 --- a/README.md +++ b/README.md @@ -83,12 +83,6 @@ Run the test suite: $ cargo test --all ``` -To emulate all the tests that will run on a Pull Request, run: - -```bash -$ ./ci/run-local.sh -``` - Local Testnet --- diff --git a/ci/run-local.sh b/ci/run-local.sh deleted file mode 100755 index 3fce495c26..0000000000 --- a/ci/run-local.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash -# -# Run the entire buildkite CI pipeline locally for pre-testing before sending a -# Github pull request -# -set -e - -cd "$(dirname "$0")/.." -BKRUN=ci/node_modules/.bin/bkrun - -if [[ ! -x $BKRUN ]]; then - ( - set -x - cd ci/ - npm install bkrun - ) -fi - -set -x -exec ./ci/node_modules/.bin/bkrun ci/buildkite.yml