Skip to content

Commit d262fb5

Browse files
committed
Separate container integrations
1 parent dc8e242 commit d262fb5

10 files changed

+418
-297
lines changed

.github/workflows/master.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,23 @@ jobs:
2121
standard: true
2222
secrets: inherit
2323

24-
test-dbm:
24+
test-dbm-integrations:
2525
needs:
2626
- cache
2727

28-
uses: ./.github/workflows/test-dbm.yml
28+
uses: ./.github/workflows/test-dbm-integrations.yml
29+
with:
30+
repo: core
31+
32+
# Options
33+
standard: true
34+
secrets: inherit
35+
36+
test-container-integrations:
37+
needs:
38+
- cache
39+
40+
uses: ./.github/workflows/test-container-integrations.yml
2941
with:
3042
repo: core
3143

.github/workflows/nightly-base-package.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,19 @@ jobs:
1717
test-py2: true
1818
secrets: inherit
1919

20-
test-dbm:
21-
uses: ./.github/workflows/test-dbm.yml
20+
test-dbm-integrations:
21+
uses: ./.github/workflows/test-dbm-integrations.yml
22+
with:
23+
repo: core
24+
25+
# Options
26+
standard: true
27+
minimum-base-package: true
28+
test-py2: true
29+
secrets: inherit
30+
31+
test-container-integrations:
32+
uses: ./.github/workflows/test-container-integrations.yml
2233
with:
2334
repo: core
2435

.github/workflows/nightly-py2.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,19 @@ jobs:
1717
test-py3: false
1818
secrets: inherit
1919

20-
test-dbm:
21-
uses: ./.github/workflows/test-dbm.yml
20+
test-dbm-integrations:
21+
uses: ./.github/workflows/test-dbm-integrations.yml
22+
with:
23+
repo: core
24+
25+
# Options
26+
standard: true
27+
test-py2: true
28+
test-py3: false
29+
secrets: inherit
30+
31+
test-container-integrations:
32+
uses: ./.github/workflows/test-container-integrations.yml
2233
with:
2334
repo: core
2435

.github/workflows/pr-all.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,18 @@ jobs:
2525
test-py2: true
2626
secrets: inherit
2727

28-
test-dbm:
29-
uses: ./.github/workflows/test-dbm.yml
28+
test-dbm-integrations:
29+
uses: ./.github/workflows/test-dbm-integrations.yml
30+
with:
31+
repo: core
32+
33+
# Options
34+
standard: true
35+
test-py2: true
36+
secrets: inherit
37+
38+
test-container-integrations:
39+
uses: ./.github/workflows/test-container-integrations.yml
3040
with:
3141
repo: core
3242

.github/workflows/test-agent.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,23 @@ jobs:
5050
agent-image-windows-py2: "${{ inputs.agent-image-windows-py2 }}"
5151
secrets: inherit
5252

53-
test-dbm:
54-
uses: ./.github/workflows/test-dbm.yml
53+
test-dbm-integrations:
54+
uses: ./.github/workflows/test-dbm-integrations.yml
55+
with:
56+
repo: core
57+
58+
# Options
59+
standard: true
60+
test-py2: ${{ inputs.test-py2 }}
61+
test-py3: ${{ inputs.test-py3 }}
62+
agent-image: "${{ inputs.agent-image }}"
63+
agent-image-py2: "${{ inputs.agent-image-py2 }}"
64+
agent-image-windows: "${{ inputs.agent-image-windows }}"
65+
agent-image-windows-py2: "${{ inputs.agent-image-windows-py2 }}"
66+
secrets: inherit
67+
68+
test-container-integrations:
69+
uses: ./.github/workflows/test-container-integrations.yml
5570
with:
5671
repo: core
5772

0 commit comments

Comments
 (0)