-
Notifications
You must be signed in to change notification settings - Fork 0
288 lines (284 loc) · 13.9 KB
/
rebuild_native_libs.yml
File metadata and controls
288 lines (284 loc) · 13.9 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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
name: Build and Push Release CXX Libraries
on:
workflow_dispatch:
# This workflow is triggered manually from the Actions tab.
# It's meant to be run on a PR that changes the native C++ code.
# It builds native libraries for all supported platforms and pushes them to the current branch.
# It splits the building process into 3 build jobs:
# 1. build-macos - Builds native libraries for MacOS: both ARM and x64.
# It uses native runners for each platform, because cross compilation on MacOS is complicated.
# 2. build-others - Builds native libraries for x64 Linux, ARM Linux and Windows.
# It uses cross-compilation for ARM Linux and Windows.
#
# Each build job saves the resulting binaries to the cache under a unique key
# When all build jobs are finished, the collect-commit-and-push job restores the binaries from the cache
# and pushes them to the current branch.
jobs:
build-all-macos:
strategy:
matrix:
# macos-14 = ARM M1
# macos-15-intel = x64
# if you change OS definitions then you need to change conditions in cache-save steps below
os: [ macos-14, macos-15-intel ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install toolchains (CXX/NASM)
run: |
# https://github.com/actions/runner-images/issues/12912
# Temporary fix (mtopolnik 2025-09-02): GH Action pre-installs a custom cmake version, install then fails
brew uninstall cmake
brew install make cmake gcc nasm
- name: Build CXX Library
run: |
cd core
export MACOSX_DEPLOYMENT_TARGET=13.0
cmake -B build/release -DCMAKE_BUILD_TYPE=Release
cmake --build build/release --config Release
- name: Copy darwin-aarch64 CXX Library to the final directory
if: ${{ matrix.os == 'macos-14' }}
run: |
mkdir -p core/src/main/resources/io/questdb/client/bin/darwin-aarch64/
mkdir -p core/src/main/bin/darwin-aarch64/
cp core/target/classes/io/questdb/client/bin-local/libquestdb.dylib core/src/main/resources/io/questdb/client/bin/darwin-aarch64/
- name: Copy darwin-x86-64 CXX Library to the final directory
if: ${{ matrix.os == 'macos-15-intel' }}
run: |
mkdir -p core/src/main/resources/io/questdb/client/bin/darwin-x86-64/
mkdir -p core/src/main/bin/darwin-x86-64/
cp core/target/classes/io/questdb/client/bin-local/libquestdb.dylib core/src/main/resources/io/questdb/client/bin/darwin-x86-64/
- name: Save darwin-aarch64 Libraries to Cache
if: ${{ matrix.os == 'macos-14' }}
uses: actions/cache/save@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/darwin-aarch64/libquestdb.dylib
key: nativelibs-armosx-${{ github.sha }}
- name: Save darwin-x86-64 Libraries to Cache
if: ${{ matrix.os == 'macos-15-intel' }}
uses: actions/cache/save@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/darwin-x86-64/libquestdb.dylib
key: nativelibs-osx-${{ github.sha }}
build-all-linux-x86-64:
runs-on: ubuntu-latest
# manylinux2014 is a container with new-ish compilers and tools, but old glibc - 2.17
# 2.17 is old enough to be compatible with most Linux distributions out there
container:
image: quay.io/pypa/manylinux2014_x86_64
volumes:
- /node20217:/node20217
- /node20217:/__e/node20
steps:
- name: Install tools, most are needed to build nasm
run: |
ldd --version
yum update -y
yum install 'perl(Env)' perl-Font-TTF perl-Sort-Versions gcc wget perf asciidoc xmlto ghostscript adobe-source-sans-pro-fonts adobe-source-code-pro-fonts rpm-build zstd curl -y
- name: Build nasm
# we need nasm 2.14+ due to this bug https://bugzilla.nasm.us/show_bug.cgi?id=3392205
# manylinux2014 distribution includes nasm 2.10
# the nasm project itself provides RPMs, but they built against a newer glibc and other dependencies too
# thus we take src.rpm from nasm project and rebuild it in the manylinux2014 container
# this way we get a nasm binary that is compatible with the manylinux2014 environment
run: |
wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.03/linux/nasm-2.16.03-0.fc39.src.rpm
rpmbuild --rebuild ./nasm-2.16.03-0.fc39.src.rpm
rpm -i ~/rpmbuild/RPMS/x86_64/nasm-2.16.03-0.el7.x86_64.rpm
- name: Install Node.js 20 glibc2.17
# A hack to override default nodejs 20 to a build compatible with older glibc.
# Inspired by https://github.com/pytorch/test-infra/pull/5959 If it's good for pytorch, it's good for us too! :)
# Q: Why do we need this hack at all? A: Because many github actions, include action/checkout@v4, depend on nodejs 20.
# GitHub Actions runner provides a build of nodejs 20 that requires a newer glibc than manylinux2014 has.
# Thus we download a build of nodejs 20 that is compatible with manylinux2014 and override the default one.
run: |
curl -LO https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz
tar -xf node-v20.9.0-linux-x64-glibc-217.tar.xz --strip-components 1 -C /node20217
ldd /__e/node20/bin/node
- uses: actions/checkout@v4
with:
submodules: true
- name: Install up-to-date CMake
run: |
wget -nv https://github.com/Kitware/CMake/releases/download/v3.29.2/cmake-3.29.2-linux-x86_64.tar.gz
tar -zxf cmake-3.29.2-linux-x86_64.tar.gz
echo "PATH=`pwd`/cmake-3.29.2-linux-x86_64/bin/:$PATH" >> "$GITHUB_ENV"
- name: Install JDK17 (for jni.h)
run: |
wget -nv https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.11%2B9/OpenJDK17U-jdk_x64_linux_hotspot_17.0.11_9.tar.gz
tar xfz OpenJDK17U-jdk_x64_linux_hotspot_17.0.11_9.tar.gz
echo "JAVA_HOME=`pwd`/jdk-17.0.11+9/" >> "$GITHUB_ENV"
- name: Generate Makefiles
run: |
cd ./core
# git submodule update --init
cmake -DCMAKE_BUILD_TYPE=Release -B cmake-build-release -S.
- name: Build linux-x86-64 CXX Library
run: |
cd core
cmake --build cmake-build-release --config Release
mkdir -p src/main/resources/io/questdb/client/bin/linux-x86-64/
mkdir -p src/main/bin/linux-x86-64/
cp target/classes/io/questdb/client/bin-local/libquestdb.so src/main/resources/io/questdb/client/bin/linux-x86-64/
- name: Save linux-x86-64 Libraries to Cache
uses: actions/cache/save@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/linux-x86-64/libquestdb.so
key: nativelibs-linux-${{ github.sha }}
build-all-linux-aarch64:
runs-on: ubuntu-22.04-arm
container:
image: quay.io/pypa/manylinux_2_28_aarch64
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install tooling
run: |
yum update -y
yum install wget nasm zstd -y
- name: Install JDK17 (for jni.h)
run: |
wget -v --timeout=180 https://api.adoptium.net/v3/binary/version/jdk-17.0.11+9/linux/aarch64/jdk/hotspot/normal/eclipse
tar xfvz eclipse
echo "JAVA_HOME=`pwd`/jdk-17.0.11+9/" >> "$GITHUB_ENV"
- name: CMAKE linux-aarch64
run: |
cd ./core
cmake -DCMAKE_TOOLCHAIN_FILE=./src/main/c/toolchains/linux-arm64.cmake -DCMAKE_BUILD_TYPE=Release -B cmake-build-release-arm64 -S.
- name: Build linux-aarch64 CXX Library
run: |
cd core
cmake --build cmake-build-release-arm64 --config Release
mkdir -p src/main/resources/io/questdb/client/bin/linux-aarch64/
mkdir -p src/main/bin/linux-aarch64/
cp target/classes/io/questdb/client/bin-local/libquestdb.so src/main/resources/io/questdb/client/bin/linux-aarch64/
- name: Save linux-aarch64 Libraries to Cache
uses: actions/cache/save@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/linux-aarch64/libquestdb.so
key: nativelibs-armlinux-${{ github.sha }}
build-cxx-windows:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Increase file count and install tooling
run: |
sudo sysctl -w fs.file-max=500000
sudo apt-get update -y
sudo apt-get install -y nasm gcc-mingw-w64 g++-mingw-w64
- name: Download windows jni_md.h from JDK 11
run: |
cd core
curl https://raw.githubusercontent.com/AdoptOpenJDK/openjdk-jdk11/master/src/java.base/windows/native/include/jni_md.h > $JAVA_HOME/include/jni_md.h
- name: CMake Windows
run: |
cd core
cmake -DCMAKE_TOOLCHAIN_FILE=./src/main/c/toolchains/windows-x86_64.cmake -DCMAKE_CROSSCOMPILING=True -DCMAKE_BUILD_TYPE=Release -B cmake-build-release-win64
- name: Build Windows CXX Library
run: |
cd core
cmake --build cmake-build-release-win64 --config Release
mkdir -p src/main/resources/io/questdb/client/bin/windows-x86-64/
cp target/classes/io/questdb/client/bin-local/libquestdb.dll src/main/resources/io/questdb/client/bin/windows-x86-64/
- name: Check CXX runtime dependency
run: |
cd ./core
if x86_64-w64-mingw32-objdump -p ./src/main/resources/io/questdb/client/bin/windows-x86-64/libquestdb.dll | grep -q libstdc++; then
echo "Failure: CXX runtime dependency detected"
exit 1
fi
- name: Check git status
run: |
git status
- name: Save Windows CXX Library to Cache
uses: actions/cache/save@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/windows-x86-64/libquestdb.dll
key: nativelibs-windows-${{ github.sha }}
collect-commit-and-push:
needs:
[
build-all-macos,
build-cxx-windows,
build-all-linux-x86-64,
build-all-linux-aarch64,
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Print file sizes before
run: |
mkdir -p ./core/src/main/resources/io/questdb/client/bin/
find ./core/src/main/resources/io/questdb/client/bin/ -type f -exec ls -l {} \; || true
- name: Restore darwin-aarch64 Libraries from Cache
uses: actions/cache/restore@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/darwin-aarch64/libquestdb.dylib
key: nativelibs-armosx-${{ github.sha }}
- name: Restore darwin-x86-64 Libraries from Cache
uses: actions/cache/restore@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/darwin-x86-64/libquestdb.dylib
key: nativelibs-osx-${{ github.sha }}
- name: Restore linux-x86-64 Libraries from Cache
uses: actions/cache/restore@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/linux-x86-64/libquestdb.so
key: nativelibs-linux-${{ github.sha }}
- name: Restore linux-aarch64 Libraries from Cache
uses: actions/cache/restore@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/linux-aarch64/libquestdb.so
key: nativelibs-armlinux-${{ github.sha }}
- name: Restore Windows CXX Library from Cache
uses: actions/cache/restore@v3
with:
path: |
core/src/main/resources/io/questdb/client/bin/windows-x86-64/libquestdb.dll
key: nativelibs-windows-${{ github.sha }}
- name: Check git status before
run: |
git status
- name: Commit the files
run: |
git config --global user.name 'GitHub Actions - Rebuild Native Libraries'
git config --global user.email 'jaromir@questdb.io'
git add core/src/main/resources/io/questdb/client/bin/darwin-aarch64/libquestdb.dylib
git add core/src/main/resources/io/questdb/client/bin/darwin-x86-64/libquestdb.dylib
git add core/src/main/resources/io/questdb/client/bin/linux-x86-64/libquestdb.so
git add core/src/main/resources/io/questdb/client/bin/linux-aarch64/libquestdb.so
git add core/src/main/resources/io/questdb/client/bin/windows-x86-64/libquestdb.dll
echo "Removing exec permissions in Git index..."
git update-index --chmod=-x core/src/main/resources/io/questdb/client/bin/linux-x86-64/libquestdb.so
git update-index --chmod=-x core/src/main/resources/io/questdb/client/bin/linux-aarch64/libquestdb.so
git update-index --chmod=-x core/src/main/resources/io/questdb/client/bin/darwin-x86-64/libquestdb.dylib
git update-index --chmod=-x core/src/main/resources/io/questdb/client/bin/darwin-aarch64/libquestdb.dylib
git commit -m "Rebuild CXX libraries"
- name: Check git status after
run: |
git status
- name: Print file sizes after
run: |
find ./core/src/main/resources/io/questdb/client/bin/ -type f -exec ls -l {} \;
- name: Push the files to the current branch
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
# Why do we use a commit hash instead of a tag for the github-push-action?
# ad-m/github-push-action is not as well-known repo as e.g. actions/checkout, and therefore we trust it less.
# d91a48109 is the same as the tag v0.8.0, but it's guaranteed to be immutable.
# So even if a bad actor takes over the repo, and rewrites tags to point to malicious commits, we will still be safe.
with:
branch: ${{ github.head_ref || github.ref_name }}