aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/actions/test-shard-run/run_tests.sh3
-rwxr-xr-xscripts/ci/ci_check.sh2
2 files changed, 5 insertions, 0 deletions
diff --git a/.github/actions/test-shard-run/run_tests.sh b/.github/actions/test-shard-run/run_tests.sh
index 08871151c..631444f95 100644
--- a/.github/actions/test-shard-run/run_tests.sh
+++ b/.github/actions/test-shard-run/run_tests.sh
@@ -8,3 +8,6 @@ EXTRA_ARGS=${4}
echo "Will run tests for module '${MODULE}' with extra args '${EXTRA_ARGS}' for group-index ${TEST_GROUP_INDEX} out of ${TEST_GROUPS_COUNT} groups:"
./gradlew --stacktrace -Dorg.gradle.daemon=false ${MODULE}testDebugUnitTest ${MODULE}testDebugUnitTestCoverage ${EXTRA_ARGS}
+
+#see https://github.com/actions/cache/issues/133
+chmod -R a+rwx .
diff --git a/scripts/ci/ci_check.sh b/scripts/ci/ci_check.sh
index e791a9465..2e385c89a 100755
--- a/scripts/ci/ci_check.sh
+++ b/scripts/ci/ci_check.sh
@@ -9,3 +9,5 @@ set -e
./gradlew --stacktrace lintDebug checkstyleMain pmdMain pmdTest --continue
./gradlew --stacktrace verifyReleaseResources
./gradlew --stacktrace generateReleasePlayResources
+#see https://github.com/actions/cache/issues/133
+chmod -R a+rwx .