summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2021-01-27 15:01:00 -0500
committerNicoleYarroch <nicole@livio.io>2021-01-27 15:01:00 -0500
commitc2520774769c4d99cff36cb6161154db67f3765e (patch)
treef4f97e71d72cbba79958d6ec7e85a94638bc18c6
parentc1100c4b6343aab7e1753cfbe400af08a9904606 (diff)
downloadsdl_ios-c2520774769c4d99cff36cb6161154db67f3765e.tar.gz
test running script
- cleared cache by updating key Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--.github/workflows/test.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 1d6685384..93c85bd80 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -58,14 +58,16 @@ jobs:
id: carthage-cache
with:
path: Carthage
- key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
+ key: ${{ runner.os }}-carthage-v2-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: ${{ runner.os }}-carthage-
- name: Installing dependencies
if: steps.carthage-cache.outputs.cache-hit != 'true'
- run: |
- carthage update --new-resolver --no-build
- bash carthage-build.sh update --no-use-binaries --platform ios --cache-builds
+ 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