From b54532b4c18a328b24674a00153eeb712e0d73e1 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 12 Jun 2020 16:02:52 -0700 Subject: [PATCH] Add explorer/ carve out --- ci/buildkite-pipeline.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ci/buildkite-pipeline.sh b/ci/buildkite-pipeline.sh index 585351e66e779a..c3655609c43d29 100755 --- a/ci/buildkite-pipeline.sh +++ b/ci/buildkite-pipeline.sh @@ -205,7 +205,7 @@ pull_or_push_steps() { # Run the full test suite by default, skipping only if modifications are local # to some particular areas of the tree - if affects_other_than ^.buildkite/ .md$ ^docs/ ^web3.js/; then + if affects_other_than ^.buildkite/ .md$ ^docs/ ^web3.js/ ^explorer/; then all_test_steps fi @@ -214,10 +214,7 @@ pull_or_push_steps() { command_step docs ". ci/rust-version.sh; ci/docker-run.sh \$\$rust_nightly_docker_image docs/build.sh" 5 fi - # web3.js/ changes: - if affects ^web3.js/; then - echo "# TODO: run solana-web3.js tests..." >> "$output_file" - fi + # web3.js and explorer changes run on Travis... }