File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Nightly Testing
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ runApmIntegrations :
7+ description : ' APM Integration Tests'
8+ required : false
9+ default : true
10+ type : boolean
11+ runApmCapabilities :
12+ description : ' APM Capabilities Tests'
13+ required : false
14+ default : true
15+ type : boolean
16+ runLlmobs :
17+ description : ' LLM-OBS Tests'
18+ required : false
19+ default : true
20+ type : boolean
21+ runPlatform :
22+ description : ' Platform Tests'
23+ required : false
24+ default : true
25+ type : boolean
26+ runServerless :
27+ description : ' Serverless Tests'
28+ required : false
29+ default : true
30+ type : boolean
31+
32+ jobs :
33+ nightly :
34+ runs-on : ubuntu-latest
35+ steps :
36+ - uses : ./.github/workflows/apm-integrations
37+ if : inputs.runApmIntegrations
38+ with :
39+ runNightly : ' true'
40+ - uses : ./.github/workflows/apm-capabilities
41+ if : inputs.runApmCapabilities
42+ with :
43+ runNightly : ' true'
44+ - uses : ./.github/workflows/llmobs
45+ if : inputs.runLlmobs
46+ with :
47+ runNightly : ' true'
48+ - uses : ./.github/workflows/platform
49+ if : inputs.runPlatform
50+ with :
51+ runNightly : ' true'
52+ - uses : ./.github/workflows/serverless
53+ if : inputs.runServerless
54+ with :
55+ runNightly : ' true'
You can’t perform that action at this time.
0 commit comments