From c36950db237d44016a62b650d85fd066d5c34fbc Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 4 Dec 2019 10:30:37 +0000 Subject: [PATCH] Make CI scripts executable and remove chmod line from pipeline --- .buildkite/pipeline.yaml | 4 ---- scripts/ci/build.sh | 0 scripts/ci/end-to-end-tests.sh | 0 scripts/ci/install-deps.sh | 0 scripts/ci/riot-unit-tests.sh | 0 scripts/ci/unit-tests.sh | 0 6 files changed, 4 deletions(-) mode change 100644 => 100755 scripts/ci/build.sh mode change 100644 => 100755 scripts/ci/end-to-end-tests.sh mode change 100644 => 100755 scripts/ci/install-deps.sh mode change 100644 => 100755 scripts/ci/riot-unit-tests.sh mode change 100644 => 100755 scripts/ci/unit-tests.sh diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 639c7420f0..be0d5e404c 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -1,10 +1,6 @@ steps: - label: ":eslint: Lint" command: - # TODO: Remove hacky chmod for BuildKite - - "echo '--- Setup'" - - "chmod +x ./scripts/ci/*.sh" - - "chmod +x ./scripts/*" - "echo '--- Install js-sdk'" - "./scripts/ci/install-deps.sh" - "yarn lintwithexclusions" diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh old mode 100644 new mode 100755 diff --git a/scripts/ci/end-to-end-tests.sh b/scripts/ci/end-to-end-tests.sh old mode 100644 new mode 100755 diff --git a/scripts/ci/install-deps.sh b/scripts/ci/install-deps.sh old mode 100644 new mode 100755 diff --git a/scripts/ci/riot-unit-tests.sh b/scripts/ci/riot-unit-tests.sh old mode 100644 new mode 100755 diff --git a/scripts/ci/unit-tests.sh b/scripts/ci/unit-tests.sh old mode 100644 new mode 100755