Skip to content

Commit

Permalink
Update CI Flow.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frog-Frog committed Sep 19, 2020
1 parent 38dbf77 commit 2c7d2a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:
restore-keys: |
${{ runner.os }}-mint-
# Carthageで管理しているライブラリのキャッシュ復元
- name: Cache Carthage packages
uses: actions/cache@v1
# SPMで管理しているライブラリのキャッシュ復元
- name: Cache SPM packages
uses: actions/cache@v2
with:
path: Carthage
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-carthage-
${{ runner.os }}-spm-
# ブートストラップ
- run: make bootstrap
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ TEST_SDK := iphonesimulator
TEST_CONFIGURATION := Debug
TEST_PLATFORM := iOS Simulator
TEST_DEVICE ?= iPhone 11 Pro Max
TEST_OS ?= 13.4.1
TEST_OS ?= 14.0
TEST_DESTINATION := 'platform=${TEST_PLATFORM},name=${TEST_DEVICE},OS=${TEST_OS}'

.PHONY: bootstrap
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
- Swift5.3+
- [Mint](https://github.com/yonaskolb/Mint)
- [XcodeGen](https://github.com/yonaskolb/XcodeGen)
- [Carthage](https://github.com/Carthage/Carthage)

# Using Tools and Libraries

Expand Down

0 comments on commit 2c7d2a6

Please sign in to comment.