This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch arm-mac in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 6ea8e663e11597a82197eec3b4ae7430e4e56623 Author: HTHou <[email protected]> AuthorDate: Thu Oct 12 17:28:24 2023 +0800 try arm mac --- .github/workflows/cluster-it-1c1d.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cluster-it-1c1d.yml b/.github/workflows/cluster-it-1c1d.yml index f91732e6909..703b83049c7 100644 --- a/.github/workflows/cluster-it-1c1d.yml +++ b/.github/workflows/cluster-it-1c1d.yml @@ -5,6 +5,7 @@ on: branches: - master - 'rel/1.*' + - arm-mac paths-ignore: - 'docs/**' - 'site/**' @@ -32,8 +33,8 @@ jobs: fail-fast: false max-parallel: 20 matrix: - java: [11] - os: [ ubuntu-latest, windows-latest ] + java: [17] + os: [ macos-latest-xlarge ] runs-on: ${{ matrix.os }} steps: @@ -57,14 +58,13 @@ jobs: netsh int ipv4 set dynamicport udp start=32768 num=32768 netsh int ipv6 set dynamicport tcp start=32768 num=32768 netsh int ipv6 set dynamicport udp start=32768 num=32768 - - name: Adjust Linux kernel somaxconn - if: ${{ runner.os == 'Linux' }} + - name: Adjust Mac kernel somaxconn + if: ${{ runner.os == 'macOS' }} 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 + run: sudo sysctl -w kern.ipc.somaxconn=65535 + - name: Install maven + shell: bash + run: brew install maven - name: IT/UT Test shell: bash # we do not compile client-cpp for saving time, it is tested in client.yml
