Skip to content

Test Agent release

Test Agent release #54

Workflow file for this run

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: core
# 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
submit-traces:
needs:
- test
if: success() || failure()

Check failure on line 57 in .github/workflows/test-agent.yml

View workflow run for this annotation

GitHub Actions / Test Agent release

Invalid workflow file

The workflow is not valid. DataDog/integrations-core/.github/workflows/test-all.yml@750f2a8b96f52e5903f57c359bdc2732e00e792c (Line: 57, Col: 3): Error calling workflow 'DataDog/integrations-core/.github/workflows/test-target.yml@750f2a8b96f52e5903f57c359bdc2732e00e792c'. The nested job 'run' is requesting 'id-token: write', but is only allowed 'id-token: none'.
uses: ./.github/workflows/submit-traces.yml
secrets: inherit