From 6d5481428b7eecfe0c2d00e8aa7ec4fe6cff411c Mon Sep 17 00:00:00 2001 From: Menny Even Danan Date: Tue, 28 Jan 2020 22:46:03 -0500 Subject: Initial language-packs merge --- .github/actions/codecov/upload_coverage.sh | 1 + .github/actions/collect-reports/collect.sh | 1 + .github/actions/deploy/deploy.sh | 1 + .github/actions/test-shard-run/run_tests.sh | 1 + 4 files changed, 4 insertions(+) mode change 100644 => 100755 .github/actions/codecov/upload_coverage.sh mode change 100644 => 100755 .github/actions/collect-reports/collect.sh mode change 100644 => 100755 .github/actions/deploy/deploy.sh mode change 100644 => 100755 .github/actions/test-shard-run/run_tests.sh (limited to '.github/actions') diff --git a/.github/actions/codecov/upload_coverage.sh b/.github/actions/codecov/upload_coverage.sh old mode 100644 new mode 100755 index 77c75f943..74df0df5d --- a/.github/actions/codecov/upload_coverage.sh +++ b/.github/actions/codecov/upload_coverage.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -e ./scripts/retry.sh 5 curl --fail https://codecov.io/bash -o codecov.sh chmod +x codecov.sh diff --git a/.github/actions/collect-reports/collect.sh b/.github/actions/collect-reports/collect.sh old mode 100644 new mode 100755 index ffe4f1108..6b641f0c2 --- a/.github/actions/collect-reports/collect.sh +++ b/.github/actions/collect-reports/collect.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -e OUTPUT=${1} PATTERN=${2} diff --git a/.github/actions/deploy/deploy.sh b/.github/actions/deploy/deploy.sh old mode 100644 new mode 100755 index 6ba126df1..b9b8a09f1 --- a/.github/actions/deploy/deploy.sh +++ b/.github/actions/deploy/deploy.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -e RELEASE_BUILD=${1} GITHUB_REF=${2} diff --git a/.github/actions/test-shard-run/run_tests.sh b/.github/actions/test-shard-run/run_tests.sh old mode 100644 new mode 100755 index 631444f95..cd6aa68b9 --- a/.github/actions/test-shard-run/run_tests.sh +++ b/.github/actions/test-shard-run/run_tests.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -e export TEST_GROUPS_COUNT=${1} export TEST_GROUP_INDEX=${2} -- cgit v1.2.3