Skip to content

Commit 7cd568c

Browse files
authored
remove org.reflections:reflections, only test use it
1 parent 5d6609c commit 7cd568c

File tree

23 files changed

+412
-247
lines changed

23 files changed

+412
-247
lines changed

.github/workflows/cluster-it-1c1d.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ on:
44
push:
55
branches:
66
- master
7-
- 'rel/*'
8-
- 'rc/*'
7+
- "rel/*"
8+
- "rc/*"
99
paths-ignore:
10-
- 'docs/**'
11-
- 'site/**'
10+
- "docs/**"
11+
- "site/**"
1212
pull_request:
1313
branches:
1414
- master
15-
- 'rel/*'
16-
- 'rc/*'
15+
- "rel/*"
16+
- "rc/*"
1717
paths-ignore:
18-
- 'docs/**'
19-
- 'site/**'
18+
- "docs/**"
19+
- "site/**"
2020
# allow manually run the action:
2121
workflow_dispatch:
2222

@@ -35,16 +35,18 @@ jobs:
3535
fail-fast: false
3636
max-parallel: 15
3737
matrix:
38-
os: [ ubuntu-latest, windows-latest ]
38+
os: [ubuntu-latest, windows-latest]
3939
runs-on: ${{ matrix.os }}
4040

4141
steps:
4242
- uses: actions/checkout@v4
4343
- name: Set up JDK
4444
uses: actions/setup-java@v4
4545
with:
46-
distribution: liberica
46+
distribution: oracle
4747
java-version: 17
48+
env:
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4850
- name: Cache Maven packages
4951
uses: actions/cache@v4
5052
with:
@@ -63,10 +65,10 @@ jobs:
6365
if: ${{ runner.os == 'Linux' }}
6466
shell: bash
6567
run: sudo sysctl -w net.core.somaxconn=65535
66-
# - name: Adjust Mac kernel somaxconn
67-
# if: ${{ runner.os == 'macOS' }}
68-
# shell: bash
69-
# run: sudo sysctl -w kern.ipc.somaxconn=65535
68+
# - name: Adjust Mac kernel somaxconn
69+
# if: ${{ runner.os == 'macOS' }}
70+
# shell: bash
71+
# run: sudo sysctl -w kern.ipc.somaxconn=65535
7072
- name: IT/UT Test
7173
shell: bash
7274
# we do not compile client-cpp for saving time, it is tested in client.yml
@@ -85,4 +87,3 @@ jobs:
8587
name: standalone-log-java${{ matrix.java }}-${{ runner.os }}
8688
path: integration-test/target/cluster-logs
8789
retention-days: 1
88-

.github/workflows/cluster-it-1c3d.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ on:
44
push:
55
branches:
66
- master
7-
- 'rel/*'
8-
- 'rc/*'
7+
- "rel/*"
8+
- "rc/*"
99
paths-ignore:
10-
- 'docs/**'
11-
- 'site/**'
10+
- "docs/**"
11+
- "site/**"
1212
pull_request:
1313
branches:
1414
- master
15-
- 'rel/*'
16-
- 'rc/*'
17-
- 'force_ci/**'
15+
- "rel/*"
16+
- "rc/*"
17+
- "force_ci/**"
1818
paths-ignore:
19-
- 'docs/**'
20-
- 'site/**'
19+
- "docs/**"
20+
- "site/**"
2121
# allow manually run the action:
2222
workflow_dispatch:
2323

@@ -36,17 +36,19 @@ jobs:
3636
fail-fast: false
3737
max-parallel: 20
3838
matrix:
39-
java: [ 17 ]
39+
java: [17]
4040
runs-on: [self-hosted, iotdb]
41-
# group: self-hosted
42-
# labels: iotdb
41+
# group: self-hosted
42+
# labels: iotdb
4343
steps:
4444
- uses: actions/checkout@v4
4545
- name: Set up JDK ${{ matrix.java }}
4646
uses: actions/setup-java@v4
4747
with:
4848
distribution: oracle
4949
java-version: ${{ matrix.java }}
50+
env:
51+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5052
- name: IT/UT Test
5153
shell: bash
5254
# we do not compile client-cpp for saving time, it is tested in client.yml

.github/workflows/compile-check.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ on:
66
push:
77
branches:
88
- master
9-
- 'rel/*'
10-
- 'rc/*'
9+
- "rel/*"
10+
- "rc/*"
1111
paths-ignore:
12-
- 'docs/**'
13-
- 'site/**'
12+
- "docs/**"
13+
- "site/**"
1414
pull_request:
1515
branches:
1616
- master
17-
- 'rel/*'
18-
- 'rc/*'
19-
- 'force_ci/**'
17+
- "rel/*"
18+
- "rc/*"
19+
- "force_ci/**"
2020
paths-ignore:
21-
- 'docs/**'
22-
- 'site/**'
21+
- "docs/**"
22+
- "site/**"
2323
# allow manually run the action:
2424
workflow_dispatch:
2525

@@ -38,15 +38,17 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
java: [8]
41-
os: [ ubuntu-latest ]
41+
os: [ubuntu-latest]
4242
runs-on: ${{ matrix.os }}
4343
steps:
4444
- uses: actions/checkout@v4
4545
- name: Set up JDK ${{ matrix.java }}
4646
uses: actions/setup-java@v4
4747
with:
48-
distribution: liberica
48+
distribution: corretto
4949
java-version: ${{ matrix.java }}
50+
env:
51+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5052
- name: Compiler Test
5153
shell: bash
5254
run: |

0 commit comments

Comments
 (0)