File tree 3 files changed +4
-10
lines changed
3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,12 @@ jobs:
10
10
steps :
11
11
- uses : actions/checkout@v4
12
12
13
- - name : Set up JDK
13
+ - name : Set up JDK 21
14
14
uses : actions/setup-java@v4
15
15
with :
16
16
distribution : ' temurin'
17
17
java-version : ' 21'
18
18
cache : ' gradle'
19
19
20
- - name : Grant execute permission for gradlew
21
- run : chmod +x gradlew
22
-
23
20
- name : Build with Gradle
24
21
run : ./gradlew githubWorkflowTest --no-daemon -i
Original file line number Diff line number Diff line change @@ -11,16 +11,13 @@ jobs:
11
11
steps :
12
12
- uses : actions/checkout@v4
13
13
14
- - name : Set up JDK
14
+ - name : Set up JDK 21
15
15
uses : actions/setup-java@v4
16
16
with :
17
17
distribution : ' temurin'
18
18
java-version : ' 21'
19
19
cache : ' gradle'
20
20
21
- - name : Grant execute permission for gradlew
22
- run : chmod +x gradlew
23
-
24
21
- name : Build with Gradle
25
22
run : ./gradlew githubWorkflowTest --no-daemon -i
26
23
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ jacocoTestReport {
81
81
}
82
82
83
83
tasks. register(' githubWorkflowTest' , Test ) {
84
- exclude ' **/**AddMultithreadingTest.class'
85
- exclude ' **/**BlockingQueueTest.class'
84
+ // exclude '**/**AddMultithreadingTest.class'
85
+ // exclude '**/**BlockingQueueTest.class'
86
86
exclude ' **/**DeadlockTest.class'
87
87
}
You can’t perform that action at this time.
0 commit comments