summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2021-01-27 15:13:04 -0500
committerNicoleYarroch <nicole@livio.io>2021-01-27 15:13:04 -0500
commita27315ed235ec55e009acfba307ce07412463986 (patch)
tree0d51027feebe740e7f3aa6ff9b579c726f69657b
parentc2520774769c4d99cff36cb6161154db67f3765e (diff)
downloadsdl_ios-bugfix/issue_1884_fix_remote_tests_build.tar.gz
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--.github/workflows/test.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 93c85bd80..5ad63eea0 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -58,18 +58,13 @@ jobs:
id: carthage-cache
with:
path: Carthage
- key: ${{ runner.os }}-carthage-v2-${{ hashFiles('**/Cartfile.resolved') }}
+ key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: ${{ runner.os }}-carthage-
- name: Installing dependencies
if: steps.carthage-cache.outputs.cache-hit != 'true'
run: bash carthage-build.sh update --no-use-binaries --platform ios --cache-builds
- # run: |
- # carthage update --new-resolver --no-build
- # bash carthage-build.sh update --no-use-binaries --platform ios --cache-builds
- # run: carthage bootstrap --no-use-binaries --platform iOS --cache-builds
-
# Split build into build-only and test-only as it is faster than building and running in one step
- name: Building unit tests
run: xcodebuild build-for-testing -project "$PROJECT" -destination "$DESTINATION" -scheme "${{ matrix.scheme }}"