-
Notifications
You must be signed in to change notification settings - Fork 1.1k
238 lines (231 loc) · 8.25 KB
/
client-cpp-package.yml
File metadata and controls
238 lines (231 loc) · 8.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# Manual run; Release published; v* tag pushes; rc/** pushes only when C++-related paths change
# (job should-package). release events use the workflow file from the default branch.
name: C++ Client package
on:
workflow_dispatch:
release:
types: [published]
push:
branches:
- "rc/**"
tags:
- "v*"
concurrency:
group: client-cpp-package-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
MAVEN_ARGS: --batch-mode --no-transfer-progress
jobs:
should-package:
runs-on: ubuntu-latest
outputs:
run: ${{ steps.result.outputs.run }}
steps:
- uses: actions/checkout@v5
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/rc/')
- uses: dorny/paths-filter@v3
id: filter
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/rc/')
with:
filters: |
cpp:
- 'pom.xml'
- 'iotdb-client/**'
- 'iotdb-protocol/**'
- '.github/workflows/client-cpp-package.yml'
- id: result
shell: bash
run: |
set -euo pipefail
E="${{ github.event_name }}"
R="${{ github.ref }}"
if [[ "$E" == "workflow_dispatch" ]] || [[ "$E" == "release" ]]; then
echo "run=true" >> "$GITHUB_OUTPUT"
exit 0
fi
if [[ "$E" == "push" ]] && [[ "$R" == refs/tags/v* ]]; then
echo "run=true" >> "$GITHUB_OUTPUT"
exit 0
fi
if [[ "$E" == "push" ]] && [[ "$R" =~ ^refs/heads/rc/ ]]; then
if [[ "${{ steps.filter.outputs.cpp }}" == "true" ]]; then
echo "run=true" >> "$GITHUB_OUTPUT"
else
echo "run=false" >> "$GITHUB_OUTPUT"
fi
exit 0
fi
echo "run=false" >> "$GITHUB_OUTPUT"
package-linux:
name: Package (${{ matrix.name }})
needs: should-package
if: needs.should-package.outputs.run == 'true'
strategy:
fail-fast: false
matrix:
include:
- name: linux-x86_64
runs-on: ubuntu-22.04
- name: linux-aarch64
runs-on: ubuntu-22.04-arm
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "17"
- name: Install C++ dependencies (Linux)
shell: bash
run: |
set -euxo pipefail
sudo apt-get update
sudo apt-get install -y libboost-all-dev openssl libssl-dev wget
. /etc/os-release
if [[ "${VERSION_CODENAME}" == "jammy" ]]; then
wget -qO /tmp/llvm.sh https://apt.llvm.org/llvm.sh
chmod +x /tmp/llvm.sh
sudo DEBIAN_FRONTEND=noninteractive /tmp/llvm.sh 17
# llvm.sh installs clang-17/lldb/lld/clangd but not the clang-format-17 package
sudo apt-get install -y clang-format-17
else
sudo apt-get install -y clang-format-17
fi
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-17 100
sudo update-alternatives --set clang-format /usr/bin/clang-format-17
clang-format --version
- name: Cache Maven packages
uses: actions/cache@v5
with:
path: ~/.m2
key: ${{ runner.os }}-${{ runner.arch }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-m2-
- name: Package client-cpp
shell: bash
run: |
set -euxo pipefail
./mvnw clean package -P with-cpp -pl iotdb-client/client-cpp -am -DskipTests
- name: Upload zip artifact
uses: actions/upload-artifact@v6
with:
name: client-cpp-${{ matrix.name }}
path: iotdb-client/client-cpp/target/client-cpp-*-cpp-*.zip
if-no-files-found: error
package-macos:
name: Package (${{ matrix.name }})
needs: should-package
if: needs.should-package.outputs.run == 'true'
strategy:
fail-fast: false
matrix:
include:
- name: macos-x86_64
runs-on: macos-15-intel
- name: macos-arm64
runs-on: macos-latest
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "17"
- name: Install C++ dependencies (macOS)
shell: bash
run: |
set -euxo pipefail
brew install boost openssl llvm@17
ln -sf "$(brew --prefix llvm@17)/bin/clang-format" "$(brew --prefix)/bin/clang-format"
echo "$(brew --prefix llvm@17)/bin" >> "$GITHUB_PATH"
clang-format --version
- name: Cache Maven packages
uses: actions/cache@v5
with:
path: ~/.m2
key: ${{ runner.os }}-${{ runner.arch }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-m2-
- name: Package client-cpp
shell: bash
env:
MACOSX_DEPLOYMENT_TARGET: "12.0"
run: |
set -euxo pipefail
./mvnw clean package -P with-cpp -pl iotdb-client/client-cpp -am -DskipTests
- name: Upload zip artifact
uses: actions/upload-artifact@v6
with:
name: client-cpp-${{ matrix.name }}
path: iotdb-client/client-cpp/target/client-cpp-*-cpp-*.zip
if-no-files-found: error
package-windows:
name: Package (${{ matrix.name }})
needs: should-package
if: needs.should-package.outputs.run == 'true'
strategy:
fail-fast: false
matrix:
include:
- name: windows-vs2022
runs-on: windows-2022
boost_choco: boost-msvc-14.3
cmake_generator: ""
iotdb_tools_thrift_version: ""
- name: windows-vs2026
runs-on: windows-2025-vs2026
boost_choco: boost-msvc-14.3
cmake_generator: Visual Studio 18 2026
iotdb_tools_thrift_version: ""
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "17"
- name: Install C++ dependencies (Windows)
shell: pwsh
run: |
choco install winflexbison3 -y
choco install ${{ matrix.boost_choco }} -y
$boost_path = (Get-ChildItem -Path 'C:\local\' -Filter 'boost_*').FullName
echo $boost_path >> $env:GITHUB_PATH
choco install openssl -y
$sslPath = (Get-ChildItem 'C:\Program Files\OpenSSL*' -Directory | Select-Object -First 1).FullName
echo "$sslPath\bin" >> $env:GITHUB_PATH
echo "OPENSSL_ROOT_DIR=$sslPath" >> $env:GITHUB_ENV
choco install llvm --version=17.0.6 --force -y
clang-format --version
- name: Cache Maven packages
uses: actions/cache@v5
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-m2-
- name: Package client-cpp
shell: bash
env:
CMAKE_GENERATOR: ${{ matrix.cmake_generator }}
IOTDB_TOOLS_THRIFT_VERSION: ${{ matrix.iotdb_tools_thrift_version }}
run: |
set -euxo pipefail
MVN_ARGS=(./mvnw clean package -P with-cpp -pl iotdb-client/client-cpp -am -DskipTests)
if [ -n "${CMAKE_GENERATOR:-}" ]; then
MVN_ARGS+=("-Dcmake.generator=${CMAKE_GENERATOR}")
fi
if [ -n "${IOTDB_TOOLS_THRIFT_VERSION:-}" ]; then
MVN_ARGS+=("-Diotdb-tools-thrift.version=${IOTDB_TOOLS_THRIFT_VERSION}")
fi
"${MVN_ARGS[@]}"
- name: Upload zip artifact
uses: actions/upload-artifact@v6
with:
name: client-cpp-${{ matrix.name }}
path: iotdb-client/client-cpp/target/client-cpp-*-cpp-*.zip
if-no-files-found: error