-
Notifications
You must be signed in to change notification settings - Fork 145
59 lines (53 loc) · 1.64 KB
/
TestSuite-PR.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
name: Test Suite - PR
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
inputs:
agent-ref:
description: "Specify agent branch/tag/sha (main is default)"
required: false
default: 'main'
ait-ref:
description: "Specify AIT branch/tag/sha (main is default)"
required: false
default: 'main'
cache-ref:
description: "Specify cache branch/tag/sha (main is default)"
required: false
default: 'main'
jobs:
aits:
uses: ./.github/workflows/Test-AITs.yml
with:
agent-ref: ${{ inputs.agent-ref || github.sha || 'main' }}
ait-ref: ${{ inputs.ait-ref || 'main' }}
cache-ref: ${{ inputs.cache-ref || 'main' }}
secrets: inherit
functional-tests:
uses: ./.github/workflows/GHA-Functional-Tests.yaml
with:
agent-ref: ${{ inputs.agent-ref || github.sha || 'main' }}
secrets: inherit
functional-tests-scala:
uses: ./.github/workflows/GHA-Scala-Functional-Tests.yaml
with:
agent-ref: ${{ inputs.agent-ref || github.sha || 'main' }}
secrets: inherit
instrumentation-tests:
uses: ./.github/workflows/Java-Instrumentation-Tests.yml
with:
agent-ref: ${{ inputs.agent-ref || github.sha || 'main' }}
secrets: inherit
instrumentation-tests-scala:
uses: ./.github/workflows/GHA-Scala-Instrumentation-Tests.yaml
with:
agent-ref: ${{ inputs.agent-ref || github.sha || 'main' }}
secrets: inherit
unit-tests:
uses: ./.github/workflows/GHA-Unit-Tests.yaml
with:
agent-ref: ${{ inputs.agent-ref || github.sha || 'main' }}
secrets: inherit