File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
src/test/java/org/xbill/DNS Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,11 @@ runs:
16
16
steps :
17
17
- name : Download artifacts
18
18
if : github.event_name != 'workflow_run'
19
- uses : actions/download-artifact@v3
19
+ uses : actions/download-artifact@v4
20
20
with :
21
- name : ${{ inputs.name }}
21
+ pattern : ${{ inputs.name }}
22
22
path : ${{ inputs.path }}
23
+ merge-multiple : true
23
24
24
25
- name : Download artifacts
25
26
if : github.event_name == 'workflow_run'
Original file line number Diff line number Diff line change 11
11
- name : Get reports
12
12
uses : ./.github/actions/download-artifact
13
13
with :
14
- name : reports
14
+ name : reports-*
15
15
16
16
- name : Get coverage
17
17
uses : ./.github/actions/download-artifact
Original file line number Diff line number Diff line change @@ -79,15 +79,15 @@ jobs:
79
79
uses : ./.github/actions/upload-artifact
80
80
if : always() # always run even if the previous step fails
81
81
with :
82
- name : reports
82
+ name : reports-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
83
83
filename : ${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
84
84
path : target/surefire-reports-*/TEST-*.xml
85
85
86
86
- name : Upload Coverage Reports
87
87
uses : ./.github/actions/upload-artifact
88
88
if : always() # always run even if the previous step fails
89
89
with :
90
- name : coverage
90
+ name : coverage-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
91
91
filename : ${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
92
92
path : target/jacoco-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}.exec
93
93
@@ -109,7 +109,7 @@ jobs:
109
109
- name : Get coverage artifact
110
110
uses : ./.github/actions/download-artifact
111
111
with :
112
- name : coverage
112
+ name : coverage-*
113
113
114
114
- name : Get classes
115
115
uses : ./.github/actions/download-artifact
Original file line number Diff line number Diff line change 9
9
import java .util .List ;
10
10
import java .util .stream .Collectors ;
11
11
import lombok .SneakyThrows ;
12
+ import org .junit .jupiter .api .Disabled ;
12
13
import org .junit .jupiter .api .Tag ;
13
14
import org .junit .jupiter .api .Test ;
14
15
import org .openjdk .jcstress .Main ;
23
24
24
25
class ZoneStressTest {
25
26
@ Test
27
+ @ Disabled ("Too expensive to always run" )
26
28
@ Tag ("concurrency" )
27
29
void runZoneConcurrentReadStressTest () throws Exception {
28
30
// IntelliJ doesn't properly run the JCStress' annotation processor,
You can’t perform that action at this time.
0 commit comments