-
Notifications
You must be signed in to change notification settings - Fork 3
30 lines (30 loc) · 1.03 KB
/
test-ios.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
name: Test iOS implementation
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build klibs
run: ./gradlew iosArm64MainKlibrary iosSimulatorArm64MainKlibrary
- name: Run tests
run: ./gradlew iosSimulatorArm64Test
- name: Run ISO mDL tests
run: |
cd mobile-driving-licence-credential
./gradlew -DregressionTest=true iosSimulatorArm64Test
cd ..
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: vck Tests
path: vck/build/test-results/**/TEST*.xml,vck-openid/build/test-results/**/TEST*.xml,vck-openid-ktor/build/test-results/**/TEST*.xml,mobile-driving-licence-credential/mobiledrivinglicence/build/test-results/**/TEST*.xml
reporter: java-junit