File tree 13 files changed +538
-184
lines changed
13 files changed +538
-184
lines changed Original file line number Diff line number Diff line change 9
9
cache :
10
10
uses : ./.github/workflows/cache-shared-deps.yml
11
11
12
- test :
12
+ test-common :
13
13
needs :
14
14
- cache
15
15
16
- uses : ./.github/workflows/test-all.yml
16
+ uses : ./.github/workflows/tests/test-common.yml
17
+ with :
18
+ repo : core
19
+
20
+ # Options
21
+ standard : true
22
+ secrets : inherit
23
+
24
+ test-dbm :
25
+ needs :
26
+ - cache
27
+
28
+ uses : ./.github/workflows/tests/test-dbm.yml
29
+ with :
30
+ repo : core
31
+
32
+ # Options
33
+ standard : true
34
+ secrets : inherit
35
+
36
+ test-integrations :
37
+ needs :
38
+ - cache
39
+
40
+ uses : ./.github/workflows/tests/test-all.yml
17
41
with :
18
42
repo : core
19
43
23
47
24
48
publish-test-results :
25
49
needs :
26
- - test
50
+ - test-common
51
+ - test-integrations
27
52
if : success() || failure()
28
53
concurrency :
29
54
group : test-results
33
58
34
59
submit-traces :
35
60
needs :
36
- - test
61
+ - test-common
62
+ - test-integrations
37
63
if : success() || failure()
38
64
39
65
uses : ./.github/workflows/submit-traces.yml
Original file line number Diff line number Diff line change 6
6
- cron : " 0 5 * * *"
7
7
8
8
jobs :
9
- test :
10
- uses : ./.github/workflows/test-all.yml
9
+ test-common :
10
+ uses : ./.github/workflows/tests/test-common.yml
11
+ with :
12
+ repo : core
13
+
14
+ # Options
15
+ standard : true
16
+ minimum-base-package : true
17
+ test-py2 : true
18
+ secrets : inherit
19
+
20
+ test-dbm :
21
+ uses : ./.github/workflows/tests/test-dbm.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-integrations :
32
+ uses : ./.github/workflows/tests/test-all.yml
11
33
with :
12
34
repo : core
13
35
19
41
20
42
submit-traces :
21
43
needs :
22
- - test
44
+ - test-common
45
+ - test-integrations
23
46
if : success() || failure()
24
47
25
48
uses : ./.github/workflows/submit-traces.yml
Original file line number Diff line number Diff line change 6
6
- cron : " 0 4 * * *"
7
7
8
8
jobs :
9
- test :
10
- uses : ./.github/workflows/test-all.yml
9
+ test-common :
10
+ uses : ./.github/workflows/tests/test-common.yml
11
+ with :
12
+ repo : core
13
+
14
+ # Options
15
+ standard : true
16
+ test-py2 : true
17
+ test-py3 : false
18
+ secrets : inherit
19
+
20
+ test-dbm :
21
+ uses : ./.github/workflows/tests/test-dbm.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-integrations :
32
+ uses : ./.github/workflows/tests/test-all.yml
11
33
with :
12
34
repo : core
13
35
19
41
20
42
submit-traces :
21
43
needs :
22
- - test
44
+ - test-common
45
+ - test-integrations
23
46
if : success() || failure()
24
47
25
48
uses : ./.github/workflows/submit-traces.yml
Original file line number Diff line number Diff line change @@ -15,8 +15,28 @@ concurrency:
15
15
cancel-in-progress : true
16
16
17
17
jobs :
18
- test :
19
- uses : ./.github/workflows/test-all.yml
18
+ test-common :
19
+ uses : ./.github/workflows/tests/test-common.yml
20
+ with :
21
+ repo : core
22
+
23
+ # Options
24
+ standard : true
25
+ test-py2 : true
26
+ secrets : inherit
27
+
28
+ test-dbm :
29
+ uses : ./.github/workflows/tests/test-dbm.yml
30
+ with :
31
+ repo : core
32
+
33
+ # Options
34
+ standard : true
35
+ test-py2 : true
36
+ secrets : inherit
37
+
38
+ test-integrations :
39
+ uses : ./.github/workflows/tests/test-all.yml
20
40
with :
21
41
repo : core
22
42
@@ -27,14 +47,16 @@ jobs:
27
47
28
48
save-event :
29
49
needs :
30
- - test
50
+ - test-common
51
+ - test-integrations
31
52
if : success() || failure()
32
53
33
54
uses : ./.github/workflows/save-event.yml
34
55
35
56
submit-traces :
36
57
needs :
37
- - test
58
+ - test-common
59
+ - test-integrations
38
60
if : success() || failure()
39
61
40
62
uses : ./.github/workflows/submit-traces.yml
Original file line number Diff line number Diff line change 35
35
type : string
36
36
37
37
jobs :
38
- test :
39
- uses : ./.github/workflows/test-all.yml
38
+ test-common :
39
+ uses : ./.github/workflows/tests/test-common.yml
40
+ with :
41
+ repo : core
42
+
43
+ # Options
44
+ standard : true
45
+ test-py2 : ${{ inputs.test-py2 }}
46
+ test-py3 : ${{ inputs.test-py3 }}
47
+ agent-image : " ${{ inputs.agent-image }}"
48
+ agent-image-py2 : " ${{ inputs.agent-image-py2 }}"
49
+ agent-image-windows : " ${{ inputs.agent-image-windows }}"
50
+ agent-image-windows-py2 : " ${{ inputs.agent-image-windows-py2 }}"
51
+ secrets : inherit
52
+
53
+ test-dbm :
54
+ uses : ./.github/workflows/tests/test-dbm.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-integrations :
69
+ uses : ./.github/workflows/tests/test-all.yml
40
70
with :
41
71
repo : core
42
72
52
82
53
83
submit-traces :
54
84
needs :
55
- - test
85
+ - test-common
86
+ - test-integrations
56
87
if : success() || failure()
57
88
58
89
uses : ./.github/workflows/submit-traces.yml
You can’t perform that action at this time.
0 commit comments