-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (33 loc) · 1.07 KB
/
multiplatform.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
name: Multiplatform CI
on:
pull_request:
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
tests:
if: github.event.pull_request.draft == false
runs-on: [ self-hosted, Android ]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout the code
uses: actions/[email protected]
with:
token: ${{ github.token }}
submodules: recursive
# Setup Gradle and clean
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean
# Run tests
# We run each test independently instead of `allTests` because we have a concurrency problem on Realm
- name: Run Android Unit tests
run: ./gradlew testDebugUnitTest --stacktrace
- name: Run iOS Unit tests
run: ./gradlew iosSimulatorArm64Test --stacktrace
# - name: Run Unit tests
# run: ./gradlew allTests --stacktrace