generated from nimblehq/git-template
-
Notifications
You must be signed in to change notification settings - Fork 0
199 lines (168 loc) · 5.93 KB
/
test.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
name: Code analysis, test and generate sample project
on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
generate_sample:
name: Generate the sample project
runs-on: macos-latest
timeout-minutes: 30
steps:
- name: Check out
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
submodules: "recursive"
- name: Cache Gradle
uses: actions/cache@v3
with:
path: |
~/.gradle/caches/modules-*
~/.gradle/caches/jars-*
~/.gradle/caches/build-cache-*
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Install Kscript
run: |
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
source android/version.properties
sdk install kotlin $kotlinVersion
sdk install kscript $kscriptVersion
echo $PATH >> $GITHUB_PATH
# To avoid code change in git when refreshing the "sample" project
- name: Preserve the ArkanaKeys
run: mv -f ./sample/ios/ArkanaKeys ../
- name: Remove the old sample project
run: rm -rf sample
- name: Generate the new sample project
run: ./make.sh --bundle-id co.nimblehq.kmm.template --bundle-id-staging co.nimblehq.kmm.template.staging --project-name sample --ios-version 14.0
- name: Restore the previous ArkanaKeys's keys
run: |
rm -rf ./sample/ios/ArkanaKeys
mv -f ../ArkanaKeys ./sample/ios
- id: changes
name: Check for changes in the sample project
run: |
count=$(git status sample --porcelain | wc -l)
echo "count=$count" >> $GITHUB_OUTPUT
- name: Commit & push the sample project changes
if: steps.changes.outputs.count > 0
run: |
git config user.name team-nimblehq
git config user.email [email protected]
git add sample
git commit -m "[Chore] Generate & update sample project"
git push
android_test:
needs: [generate_sample]
name: Run Android code analysis and tests
runs-on: ubuntu-latest
timeout-minutes: 30
defaults:
run:
working-directory: ./sample
steps:
- name: Check out
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Cache Gradle
uses: actions/cache@v3
with:
path: |
~/.gradle/caches/modules-*
~/.gradle/caches/jars-*
~/.gradle/caches/build-cache-*
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Decode buildKonfig properties
run: echo ${{ secrets.BUILD_KONFIG_PROPERTIES }} | base64 --decode > buildKonfig.properties
- name: Run Detekt
run: ./gradlew detekt
- name: Run Lint
run: ./gradlew lint
- name: Run unit tests with Kover
run: ./gradlew koverXMLReport
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true
- name: Run Danger to wrap up the review
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
bundle install
bundle exec danger --danger_id=danger_android
ios_test:
needs: [generate_sample]
name: Run iOS code analysis and tests
runs-on: macos-latest
defaults:
run:
working-directory: ./sample/ios
steps:
- name: Check out
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Set up cache
uses: actions/cache@v3
id: bunlderCache
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Bundle install
run: bundle install
- name: Cache Pods
uses: actions/cache@v3
id: cocoapodCache
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Decode buildKonfig properties
working-directory: ./sample
run: echo ${{ secrets.BUILD_KONFIG_PROPERTIES }} | base64 --decode > buildKonfig.properties
- name: Generate KMM frameworks for Cocoapods
run: |
cd ..
./gradlew generateDummyFramework
- name: Install Pods Dependencies
run: bundle exec pod install
- name: Build and Test
run: bundle exec fastlane buildAndTest
env:
CI: true
- name: Clean up previous code coverage report
run: bundle exec fastlane cleanUpOutput
- name: __Workaround__ Running Danger SwiftFormat from non-root directory
run: |
# Find the path of danger_swiftformat
danger_swiftformat_path=$(echo "$(gem which danger_swiftformat)" | sed 's/\/danger_swiftformat.rb//')
echo $danger_swiftformat_path
# Insert a map operator in the "find_swift_files" method to remove "sample/ios/" prefix from all files.
sed -i '' "s/.uniq/.uniq.map { |file| file.partition('sample\/ios\/').last }/g" "$danger_swiftformat_path/swiftformat/plugin.rb"
- name: Run Danger to wrap up the review
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: bundle exec danger --danger_id=danger_ios