This is an automated email from the ASF dual-hosted git repository. jackietien pushed a commit to branch object_type in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit dcebd6694456f7fff3161fe2bf2cdcff60f86ef2 Author: Haonan <[email protected]> AuthorDate: Tue Jul 15 09:58:24 2025 +0800 Remove CI on windows-2022 (#15938) (cherry picked from commit 77a91e0f60ae9d941a01148bef57a1e4dd2049ad) --- .github/workflows/multi-language-client.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/multi-language-client.yml b/.github/workflows/multi-language-client.yml index 5bba3d5d5ac..b6dda5eb4b0 100644 --- a/.github/workflows/multi-language-client.yml +++ b/.github/workflows/multi-language-client.yml @@ -45,7 +45,7 @@ jobs: fail-fast: false max-parallel: 15 matrix: - os: [ubuntu-22.04, ubuntu-24.04, windows-2019, windows-2022, macos-latest] + os: [ubuntu-22.04, ubuntu-24.04, windows-2022, macos-latest] runs-on: ${{ matrix.os}} steps: @@ -71,11 +71,7 @@ jobs: if: runner.os == 'Windows' run: | choco install winflexbison3 - if ("${{ matrix.os }}" -eq "windows-2019") { - choco install boost-msvc-14.2 - } else { - choco install boost-msvc-14.3 - } + choco install boost-msvc-14.3 $boost_path = (Get-ChildItem -Path 'C:\local\' -Filter 'boost_*').FullName echo $boost_path >> $env:GITHUB_PATH - name: Cache Maven packages @@ -95,8 +91,6 @@ jobs: run: | if [[ "$RUNNER_OS" == "Linux" ]]; then ./mvnw clean verify -P with-cpp -pl iotdb-client/client-cpp,example/client-cpp-example -am -Diotdb-tools-thrift.version=0.14.1.1-glibc223-SNAPSHOT - elif [[ "${{ matrix.os }}" == "windows-2019" ]]; then - ./mvnw clean verify -P with-cpp -pl iotdb-client/client-cpp,example/client-cpp-example -am -Diotdb-tools-thrift.version=0.14.1.1-msvc142-SNAPSHOT -Dcmake.generator="Visual Studio 16 2019" else ./mvnw clean verify -P with-cpp -pl iotdb-client/client-cpp,example/client-cpp-example -am fi
