Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract ddev, datadog_checks_base and datadog_checks_dev to separate … #17602

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
138 changes: 135 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,127 @@ jobs:
cache:
uses: ./.github/workflows/cache-shared-deps.yml

test:
test-common:
needs:
- cache

uses: ./.github/workflows/test-common.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-dbm-integrations:
needs:
- cache

uses: ./.github/workflows/test-dbm-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-container-integrations:
needs:
- cache

uses: ./.github/workflows/test-container-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-ndm-integrations:
needs:
- cache

uses: ./.github/workflows/test-ndm-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-platform-integrations:
needs:
- cache

uses: ./.github/workflows/test-platform-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-windows-integrations:
needs:
- cache

uses: ./.github/workflows/test-windows-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-integrations:
needs:
- cache

uses: ./.github/workflows/tests/test-common.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-dbm:
needs:
- cache

uses: ./.github/workflows/test-dbm-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-container-integrations:
needs:
- cache

uses: ./.github/workflows/test-container-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-windows-integrations:
needs:
- cache

uses: ./.github/workflows/test-windows-integrations.yml
with:
repo: core

# Options
standard: true
secrets: inherit

test-integrations:
needs:
- cache

Expand All @@ -23,7 +143,13 @@ jobs:

publish-test-results:
needs:
- test
- test-common
- test-dbm-integrations
- test-container-integrations
- test-ndm-integrations
- test-platform-integrations
- test-windows-integrations
- test-integrations
if: success() || failure()
concurrency:
group: test-results
Expand All @@ -33,7 +159,13 @@ jobs:

submit-traces:
needs:
- test
- test-common
- test-dbm-integrations
- test-container-integrations
- test-ndm-integrations
- test-platform-integrations
- test-windows-integrations
- test-integrations
if: success() || failure()

uses: ./.github/workflows/submit-traces.yml
Expand Down
87 changes: 85 additions & 2 deletions .github/workflows/nightly-base-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,84 @@ on:
- cron: "0 5 * * *"

jobs:
test:
test-common:
uses: ./.github/workflows/test-common.yml
with:
repo: core

# Options
standard: true
minimum-base-package: true
test-py2: true
secrets: inherit

test-dbm-integrations:
uses: ./.github/workflows/test-dbm-integrations.yml
with:
repo: core

# Options
standard: true
minimum-base-package: true
test-py2: true
secrets: inherit

test-container-integrations:
uses: ./.github/workflows/test-container-integrations.yml
with:
repo: core

# Options
standard: true
minimum-base-package: true
test-py2: true
secrets: inherit

test-ndm-integrations:
uses: ./.github/workflows/test-ndm-integrations.yml
with:
repo: core

# Options
standard: true
minimum-base-package: true
test-py2: true
secrets: inherit

test-platform-integrations:
uses: ./.github/workflows/test-platform-integrations.yml
with:
repo: core

# Options
standard: true
minimum-base-package: true
test-py2: true
secrets: inherit

test-windows-integrations:
uses: ./.github/workflows/test-windows-integrations.yml
with:
repo: core

# Options
standard: true
minimum-base-package: true
test-py2: true
secrets: inherit

test-windows-integrations:
uses: ./.github/workflows/test-windows-integrations.yml
with:
repo: core

# Options
standard: true
minimum-base-package: true
test-py2: true
secrets: inherit

test-integrations:
uses: ./.github/workflows/test-all.yml
with:
repo: core
Expand All @@ -19,7 +96,13 @@ jobs:

submit-traces:
needs:
- test
- test-common
- test-dbm-integrations
- test-container-integrations
- test-ndm-integrations
- test-platform-integrations
- test-windows-integrations
- test-integrations
if: success() || failure()

uses: ./.github/workflows/submit-traces.yml
Expand Down
87 changes: 85 additions & 2 deletions .github/workflows/nightly-py2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,84 @@ on:
- cron: "0 4 * * *"

jobs:
test:
test-common:
uses: ./.github/workflows/test-common.yml
with:
repo: core

# Options
standard: true
test-py2: true
test-py3: false
secrets: inherit

test-dbm-integrations:
uses: ./.github/workflows/test-dbm-integrations.yml
with:
repo: core

# Options
standard: true
test-py2: true
test-py3: false
secrets: inherit

test-container-integrations:
uses: ./.github/workflows/test-container-integrations.yml
with:
repo: core

# Options
standard: true
test-py2: true
test-py3: false
secrets: inherit

test-ndm-integrations:
uses: ./.github/workflows/test-ndm-integrations.yml
with:
repo: core

# Options
standard: true
test-py2: true
test-py3: false
secrets: inherit

test-platform-integrations:
uses: ./.github/workflows/test-platform-integrations.yml
with:
repo: core

# Options
standard: true
test-py2: true
test-py3: false
secrets: inherit

test-windows-integrations:
uses: ./.github/workflows/test-windows-integrations.yml
with:
repo: core

# Options
standard: true
test-py2: true
test-py3: false
secrets: inherit

test-windows-integrations:
uses: ./.github/workflows/test-windows-integrations.yml
with:
repo: core

# Options
standard: true
test-py2: true
test-py3: false
secrets: inherit

test-integrations:
uses: ./.github/workflows/test-all.yml
with:
repo: core
Expand All @@ -19,7 +96,13 @@ jobs:

submit-traces:
needs:
- test
- test-common
- test-dbm-integrations
- test-container-integrations
- test-ndm-integrations
- test-platform-integrations
- test-windows-integrations
- test-integrations
if: success() || failure()

uses: ./.github/workflows/submit-traces.yml
Expand Down
Loading
Loading