-
Notifications
You must be signed in to change notification settings - Fork 2
263 lines (250 loc) · 7.95 KB
/
test-sdks.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
name: Test SDKs
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test-java-sdk:
runs-on: macos-latest
steps:
- name: Check out Java SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/java-server-sdk'
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: 'Set up GCP SDK'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Run tests
run: make test
test-android-sdk:
runs-on: macos-latest
steps:
- name: Check out Java SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/android-sdk'
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: 'Set up GCP SDK'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Restore gradle.properties
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
shell: bash
run: |
mkdir -p ~/.gradle/
echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV
echo "MAVEN_USERNAME=${MAVEN_USERNAME}" > ~/.gradle/gradle.properties
echo "MAVEN_PASSWORD=${MAVEN_PASSWORD}" >> ~/.gradle/gradle.properties
- name: Set up test data
run: make test-data
- name: Spin up emulator and run tests
id: testing
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 33
target: google_apis
arch: x86_64
emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -dns-server 8.8.8.8
script: |
echo "Emulator started"
adb logcat -c # clear logs
mkdir -p app/ # create directory
touch app/emulator.log # create log file
chmod 777 app/emulator.log # allow writing to log file
adb logcat | grep EppoSDK >> app/emulator.log & # pipe all logcat messages into log file as a background process
./gradlew connectedCheck # run tests
- name: Upload Emulator Logs
if: always()
uses: actions/upload-artifact@v2
with:
name: emulator logs
path: app/emulator.log
- name: Upload Test Report
if: always()
uses: actions/upload-artifact@v2
with:
name: report
path: /Users/runner/work/sdk-test-data/sdk-test-data/eppo/build/reports/androidTests/connected/index.html
test-node-server-sdk:
runs-on: ubuntu-latest
steps:
- name: 'Check out node server SDK'
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/node-server-sdk'
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: '16.x'
- uses: actions/cache@v2
with:
path: './node_modules'
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('./yarn.lock') }}
- name: Install root dependencies
run: yarn --frozen-lockfile
working-directory: ./
- name: 'Set up GCP SDK for downloading test data'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Install sdk dependencies
run: yarn --frozen-lockfile
working-directory: ./
- name: Run tests
run: yarn test:unit
working-directory: ./
test-node-client-sdk:
runs-on: ubuntu-latest
steps:
- name: Check out node client SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/js-client-sdk'
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: '18.x'
- uses: actions/cache@v2
with:
path: './node_modules'
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('./yarn.lock') }}
- name: 'Set up GCP SDK for downloading test data'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Install SDK dependencies
run: yarn --frozen-lockfile
working-directory: ./
- name: Run tests
run: yarn test
working-directory: ./
test-react-native-sdk:
runs-on: ubuntu-latest
steps:
- name: Checkout React Native SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/react-native-sdk'
- name: Setup
uses: ./.github/actions/setup
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test --maxWorkers=2 --coverage
test-python-sdk:
runs-on: ubuntu-latest
steps:
- name: 'Check out Python SDK'
uses: "actions/checkout@v3"
with:
repository: 'Eppo-exp/python-sdk'
- name: Install Python 3.9
uses: "actions/setup-python@v2"
with:
python-version: '3.9.x'
- name: "Install dependencies"
run: |
python -VV
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r requirements.txt
python -m pip install -r requirements-test.txt
- name: 'Set up GCP SDK to download test data'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Run tests
run: make test
test-php-sdk:
runs-on: ubuntu-latest
steps:
- name: Check out PHP SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/php-sdk'
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: make test
test-ruby-sdk:
runs-on: ubuntu-latest
steps:
- name: Check out Ruby SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/ruby-sdk'
- name: Set up Ruby 3
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: 3.0.6
- name: Install dependencies
run: bundle install
- name: Refresh test data
run: bundle exec rake test_refreshed_data
- name: Run tests
run: bundle exec rake test
test-ios-sdk:
runs-on: macos-latest
steps:
- name: Checkout iOS SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/eppo-ios-sdk'
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
- name: 'Use gcloud CLI'
run: 'gcloud info'
- name: Build
run: make build
- name: Pull test data
run: make test-data
- name: Run tests
run: make test
test-golang-sdk:
runs-on: ubuntu-latest
steps:
- name: Checkout Go SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/golang-sdk'
- uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: 'Set up GCP SDK for downloading test data'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Run tests
run: make test
test-dotnet-sdk:
runs-on: ubuntu-latest
steps:
- name: Checkout Dot.net SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/dot-net-server-sdk'
- name: Setup .NET 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: make build
- name: Pull test data
run: make test-data
- name: Run tests
run: make test