Skip to content

Commit 7a57c8e

Browse files
Added manual nightly workflow (#6557)
* Added skeleton nightly workflow * changes values to boolean --------- Co-authored-by: perhardhernandez <[email protected]>
1 parent 18e5ccc commit 7a57c8e

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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'

0 commit comments

Comments
 (0)