Skip to content

Commit 77a91e0

Browse files
authored
Remove CI on windows-2022 (#15938)
1 parent d784493 commit 77a91e0

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/multi-language-client.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
max-parallel: 15
4747
matrix:
48-
os: [ubuntu-22.04, ubuntu-24.04, windows-2019, windows-2022, macos-latest]
48+
os: [ubuntu-22.04, ubuntu-24.04, windows-2022, macos-latest]
4949
runs-on: ${{ matrix.os}}
5050

5151
steps:
@@ -71,11 +71,7 @@ jobs:
7171
if: runner.os == 'Windows'
7272
run: |
7373
choco install winflexbison3
74-
if ("${{ matrix.os }}" -eq "windows-2019") {
75-
choco install boost-msvc-14.2
76-
} else {
77-
choco install boost-msvc-14.3
78-
}
74+
choco install boost-msvc-14.3
7975
$boost_path = (Get-ChildItem -Path 'C:\local\' -Filter 'boost_*').FullName
8076
echo $boost_path >> $env:GITHUB_PATH
8177
- name: Cache Maven packages
@@ -95,8 +91,6 @@ jobs:
9591
run: |
9692
if [[ "$RUNNER_OS" == "Linux" ]]; then
9793
./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
98-
elif [[ "${{ matrix.os }}" == "windows-2019" ]]; then
99-
./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"
10094
else
10195
./mvnw clean verify -P with-cpp -pl iotdb-client/client-cpp,example/client-cpp-example -am
10296
fi

0 commit comments

Comments
 (0)