-
Notifications
You must be signed in to change notification settings - Fork 5
97 lines (85 loc) · 2.77 KB
/
e2e-tests.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
name: End-to-end tests
concurrency:
group: ${{ github.head_ref }}${{ github.ref }}-e2e
cancel-in-progress: true
on:
schedule:
- cron: "0 1 * * *"
workflow_dispatch:
inputs:
mediatorOobUrl:
required: true
description: Mediator out-of-band url
default: https://stable-mediator.atalaprism.io/invitationOOB
agentUrl:
required: true
description: Prism-agent server url
default: https://dev-agent-a.atalaprism.io/cloud-agent
apiKey:
required: false
description: Authorization key
publishedDid:
required: false
description: Published DID
jwtSchemaGuid:
required: false
description: JWT schema GUID
anoncredDefinitionGuid:
required: false
description: Anoncred definition GUID
push:
branches:
- 'main'
- 'release/**'
env:
GITHUB_ACTOR: "hyperledger-bot"
GITHUB_ACTOR_EMAIL: "[email protected]"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
run-e2e-tests:
name: 'Run'
runs-on: ubuntu-latest
steps:
- name: Mask apikey
env:
APIKEY: ${{ inputs.apiKey || secrets.APIKEY }}
run: echo "::add-mask::${{env.APIKEY}}"
- name: Install Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- name: Checkout Code
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Gradle Build Action
uses: gradle/gradle-build-action@v2
- name: Publish to maven local
if: github.event_name == 'push' || github.event_name == 'schedule'
run: |
./gradlew publishToMavenLocal
- name: Run tests
env:
MEDIATOR_OOB_URL: ${{ inputs.mediatorOobUrl || vars.MEDIATOR_OOB_URL }}
AGENT_URL: ${{ inputs.agentUrl || vars.AGENT_URL }}
PUBLISHED_DID: ${{ inputs.publishedDid || vars.PUBLISHED_DID }}
JWT_SCHEMA_GUID: ${{ inputs.jwtSchemaGuid || vars.SCHEMA_ID }}
ANONCRED_DEFINITION_GUID: ${{ inputs.anoncredDefinitionGuid || vars.ANONCRED_DEFINITION_GUID }}
APIKEY: ${{ inputs.apiKey || secrets.APIKEY }}
working-directory: tests/end-to-end
run: |
./gradlew test --tests "TestSuite"
- name: Add notes to summary
if: always()
working-directory: tests/end-to-end
run: cat notes >> "$GITHUB_STEP_SUMMARY"
- name: Publish Serenity report
uses: actions/upload-artifact@v4
if: always()
with:
name: edge-agent-sdk-kmp
path: tests/end-to-end/target/site/serenity
if-no-files-found: 'error'