-
Notifications
You must be signed in to change notification settings - Fork 34
93 lines (78 loc) · 2.45 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: CI
on:
push:
branches:
- main
- develop
paths-ignore:
- Docs/**
- README.md
pull_request:
branches:
- develop
paths-ignore:
- Docs/**
- README.md
env:
DEVELOPER_DIR: /Applications/Xcode_11.6.app/Contents/Developer
jobs:
test:
runs-on: macOS-latest
env:
MINT_PATH: mint/lib
MINT_LINK_PATH: mint/bin
steps:
# チェックアウト
- uses: actions/checkout@v2
# Bundlerで管理しているライブラリのキャッシュ
- name: Cache Gems
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
# Bundlerで管理しているライブラリのインストール
- name: Install Bundled Gems
run: make install-bundler
# Mintのインストール
- name: Install Mint
run: brew install mint
# Mintで管理しているライブラリのキャッシュ
- name: Cache Mint packages
uses: actions/cache@v2
with:
path: mint
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
restore-keys: |
${{ runner.os }}-mint-
# Carthageで管理しているライブラリのキャッシュ
- name: Cache Carthage packages
uses: actions/cache@v2
with:
path: Carthage
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: |
${{ runner.os }}-carthage-
# Carthageで管理しているライブラリのインストール
- name: Install Carthage frameworks
run: make install-carthage
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# CocoaPodsで管理しているライブラリのキャッシュ
- name: Cache Pods
uses: actions/cache@v2
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
# プロジェクトファイルの生成、CocoaPodsで管理しているライブラリのインストール
- name: Generate Xcode project and install Pods
run: make generate-xcodeproj
# ビルド
- name: Xcode build
run: make build-debug
# 単体テストの実行
- name: Xcode test
run: make test