forked from DataDog/integrations-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (48 loc) · 1.37 KB
/
test-agent.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
name: Test Agent release
on:
workflow_dispatch:
inputs:
test-py3:
required: false
description: Run Python 3 tests
default: true
type: boolean
agent-image:
required: false
description: Agent 7 image
default: "datadog/agent:7-rc"
type: string
agent-image-windows:
required: false
description: Agent 7 image on Windows
default: "datadog/agent:7-rc-servercore"
type: string
test-py2:
required: false
description: Run Python 2 tests
default: true
type: boolean
agent-image-py2:
required: false
description: Agent 6 image
default: "datadog/agent:6-rc"
type: string
agent-image-windows-py2:
required: false
description: Agent 6 image on Windows
default: "datadog/agent-dev:master-py2-win-servercore"
type: string
jobs:
test:
uses: ./.github/workflows/test-all.yml
with:
repo: extras
# Options
standard: true
test-py2: ${{ inputs.test-py2 }}
test-py3: ${{ inputs.test-py3 }}
agent-image: "${{ inputs.agent-image }}"
agent-image-py2: "${{ inputs.agent-image-py2 }}"
agent-image-windows: "${{ inputs.agent-image-windows }}"
agent-image-windows-py2: "${{ inputs.agent-image-windows-py2 }}"
secrets: inherit