Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions .github/workflows/cluster-it-1c1d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ on:
push:
branches:
- master
- 'rel/*'
- 'rc/*'
- "rel/*"
- "rc/*"
paths-ignore:
- 'docs/**'
- 'site/**'
- "docs/**"
- "site/**"
pull_request:
branches:
- master
- 'rel/*'
- 'rc/*'
- "rel/*"
- "rc/*"
paths-ignore:
- 'docs/**'
- 'site/**'
- "docs/**"
- "site/**"
# allow manually run the action:
workflow_dispatch:

Expand All @@ -35,16 +35,18 @@ jobs:
fail-fast: false
max-parallel: 15
matrix:
os: [ ubuntu-latest, windows-latest ]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: liberica
distribution: oracle
java-version: 17
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Maven packages
uses: actions/cache@v4
with:
Expand All @@ -63,10 +65,10 @@ jobs:
if: ${{ runner.os == 'Linux' }}
shell: bash
run: sudo sysctl -w net.core.somaxconn=65535
# - name: Adjust Mac kernel somaxconn
# if: ${{ runner.os == 'macOS' }}
# shell: bash
# run: sudo sysctl -w kern.ipc.somaxconn=65535
# - name: Adjust Mac kernel somaxconn
# if: ${{ runner.os == 'macOS' }}
# shell: bash
# run: sudo sysctl -w kern.ipc.somaxconn=65535
- name: IT/UT Test
shell: bash
# we do not compile client-cpp for saving time, it is tested in client.yml
Expand All @@ -85,4 +87,3 @@ jobs:
name: standalone-log-java${{ matrix.java }}-${{ runner.os }}
path: integration-test/target/cluster-logs
retention-days: 1

26 changes: 14 additions & 12 deletions .github/workflows/cluster-it-1c3d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on:
push:
branches:
- master
- 'rel/*'
- 'rc/*'
- "rel/*"
- "rc/*"
paths-ignore:
- 'docs/**'
- 'site/**'
- "docs/**"
- "site/**"
pull_request:
branches:
- master
- 'rel/*'
- 'rc/*'
- 'force_ci/**'
- "rel/*"
- "rc/*"
- "force_ci/**"
paths-ignore:
- 'docs/**'
- 'site/**'
- "docs/**"
- "site/**"
# allow manually run the action:
workflow_dispatch:

Expand All @@ -36,17 +36,19 @@ jobs:
fail-fast: false
max-parallel: 20
matrix:
java: [ 17 ]
java: [17]
runs-on: [self-hosted, iotdb]
# group: self-hosted
# labels: iotdb
# group: self-hosted
# labels: iotdb
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: oracle
java-version: ${{ matrix.java }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: IT/UT Test
shell: bash
# we do not compile client-cpp for saving time, it is tested in client.yml
Expand Down
24 changes: 13 additions & 11 deletions .github/workflows/compile-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ on:
push:
branches:
- master
- 'rel/*'
- 'rc/*'
- "rel/*"
- "rc/*"
paths-ignore:
- 'docs/**'
- 'site/**'
- "docs/**"
- "site/**"
pull_request:
branches:
- master
- 'rel/*'
- 'rc/*'
- 'force_ci/**'
- "rel/*"
- "rc/*"
- "force_ci/**"
paths-ignore:
- 'docs/**'
- 'site/**'
- "docs/**"
- "site/**"
# allow manually run the action:
workflow_dispatch:

Expand All @@ -38,15 +38,17 @@ jobs:
fail-fast: false
matrix:
java: [8]
os: [ ubuntu-latest ]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: liberica
distribution: corretto
java-version: ${{ matrix.java }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Compiler Test
shell: bash
run: |
Expand Down
Loading
Loading