blob: 39e8b8e55a713cb94bb6aa9f4e06a1e5423a2e34 [file] [log] [blame]
Jiayu Liubcac9782022-05-07 08:35:09 +08001name: "Build"
Jiayu Liuc77d91a2022-05-03 20:55:50 +08002
Jiayu Liu6a61c4e2022-04-29 01:25:39 +08003on:
4 push:
Jiayu Liubcac9782022-05-07 08:35:09 +08005 branches: ["*"]
Jiayu Liu6a61c4e2022-04-29 01:25:39 +08006 pull_request:
Jiayu Liubcac9782022-05-07 08:35:09 +08007 branches: ["*"]
Jiayu Liuc77d91a2022-05-03 20:55:50 +08008
9env:
Jiayu Liuab83ffc2022-05-10 01:56:30 +080010 BUILD_DEPS: automake bison flex git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config
Jiayu Liu1e3d90d2023-04-14 23:57:33 +080011 CONFIG_ARGS_FOR_LIBS: >
12 --disable-debug
Jiayu Liu1e3d90d2023-04-14 23:57:33 +080013 --disable-dependency-tracking
14 --without-cpp
15 --without-c_glib
16 --without-java
17 --without-kotlin
18 --without-python
19 --without-py3
20 --without-ruby
21 --without-haxe
22 --without-netstd
23 --without-perl
24 --without-php
25 --without-php_extension
26 --without-dart
27 --without-erlang
28 --without-go
29 --without-d
30 --without-nodejs
31 --without-nodets
32 --without-lua
33 --without-rs
34 --without-swift
Jiayu Liuc77d91a2022-05-03 20:55:50 +080035
Varun Sharmabd1e5db2022-09-14 07:31:30 -070036permissions:
37 contents: read
38
Jiayu Liu6a61c4e2022-04-29 01:25:39 +080039jobs:
40 # TODO windows and macos
Jiayu Liuc77d91a2022-05-03 20:55:50 +080041 compiler:
Jiayu Liu6a61c4e2022-04-29 01:25:39 +080042 strategy:
Jiayu Liuc77d91a2022-05-03 20:55:50 +080043 matrix:
Sven Roederer502a46a2024-07-06 05:56:05 +020044 os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
Yuxuan 'fishy' Wange4970302023-06-27 09:47:58 -070045 fail-fast: false
Jiayu Liu6a61c4e2022-04-29 01:25:39 +080046 runs-on: ${{ matrix.os }}
47 steps:
dependabot[bot]a14231c2023-10-04 18:33:29 -040048 - uses: actions/checkout@v4
Jiayu Liu6a61c4e2022-04-29 01:25:39 +080049
50 - name: Install dependencies
51 run: |
Jiayu Liu6a61c4e2022-04-29 01:25:39 +080052 sudo apt-get update -yq
Jiayu Liuab83ffc2022-05-10 01:56:30 +080053 sudo apt-get install -y --no-install-recommends g++ $BUILD_DEPS
Jiayu Liu6a61c4e2022-04-29 01:25:39 +080054
55 - name: Run bootstrap
56 run: ./bootstrap.sh
57
58 - name: Run configure
59 run: ./configure --disable-debug --disable-tests --disable-libs
60
61 - name: Run make
62 run: make -j$(nproc)
63
64 - name: Run install
65 run: make install
66
67 - name: Run thrift version
68 run: /usr/local/bin/thrift -version
Jiayu Liuc77d91a2022-05-03 20:55:50 +080069
Sven Roederer502a46a2024-07-06 05:56:05 +020070 # only upload while building ubuntu-22.04
Jiayu Liuc77d91a2022-05-03 20:55:50 +080071 - name: Archive built thrift compiler
Sven Roederer502a46a2024-07-06 05:56:05 +020072 if: matrix.os == 'ubuntu-22.04'
Sven Roederer18b0de62024-07-06 03:59:37 +020073 uses: actions/upload-artifact@v4
Jiayu Liuc77d91a2022-05-03 20:55:50 +080074 with:
75 name: thrift-compiler
76 path: compiler/cpp/thrift
77 retention-days: 3
78
Volodymyr Panivko8e828c02024-02-19 11:34:48 +010079 lib-php:
80 needs: compiler
Sven Roederer3d02c0f2024-07-06 07:36:30 +020081 runs-on: ubuntu-22.04
Volodymyr Panivko8e828c02024-02-19 11:34:48 +010082 strategy:
83 matrix:
vladimir.panivkof6927022024-02-24 17:12:10 +010084 php-version: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
Volodymyr Panivko8e828c02024-02-19 11:34:48 +010085 fail-fast: false
86 steps:
87 - uses: actions/checkout@v4
88
89 - name: Set up PHP
90 uses: shivammathur/setup-php@v2
91 with:
92 php-version: ${{ matrix.php-version }}
Volodymyr Panivko99130042024-03-02 21:41:01 +010093 extensions: mbstring, intl, xml, curl
Volodymyr Panivkoac52d8d2024-02-22 22:09:00 +010094 ini-values: "error_reporting=E_ALL"
Volodymyr Panivko8e828c02024-02-19 11:34:48 +010095
96 - name: Install Dependencies
97 run: composer install
98
Volodymyr Panivko8e828c02024-02-19 11:34:48 +010099 - name: Run bootstrap
100 run: ./bootstrap.sh
101
102 - name: Run configure
103 run: |
104 ./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-php/with-php/' | sed 's/without-php_extension/with-php_extension/' )
105
Sven Roederer3d02c0f2024-07-06 07:36:30 +0200106 - uses: actions/download-artifact@v4
Volodymyr Panivko8e828c02024-02-19 11:34:48 +0100107 with:
108 name: thrift-compiler
109 path: compiler/cpp
110
111 - name: Run thrift-compiler
112 run: |
113 chmod a+x compiler/cpp/thrift
114 compiler/cpp/thrift -version
115
116 - name: Build Thrift Classes
117 run: |
118 mkdir -p ./lib/php/test/Resources/packages/php
119 mkdir -p ./lib/php/test/Resources/packages/phpv
120 mkdir -p ./lib/php/test/Resources/packages/phpvo
121 mkdir -p ./lib/php/test/Resources/packages/phpjs
Volodymyr Panivko14fc2be2024-02-22 18:17:40 +0100122 mkdir -p ./lib/php/test/Resources/packages/phpcm
Volodymyr Panivko68139d12024-03-19 23:14:07 +0100123 compiler/cpp/thrift --gen php:nsglobal="Basic" -r --out ./lib/php/test/Resources/packages/php lib/php/test/Resources/ThriftTest.thrift
124 compiler/cpp/thrift --gen php:validate,nsglobal="Validate" -r --out ./lib/php/test/Resources/packages/phpv lib/php/test/Resources/ThriftTest.thrift
125 compiler/cpp/thrift --gen php:validate,oop,nsglobal="ValidateOop" -r --out ./lib/php/test/Resources/packages/phpvo lib/php/test/Resources/ThriftTest.thrift
126 compiler/cpp/thrift --gen php:json,nsglobal="Json" -r --out ./lib/php/test/Resources/packages/phpjs lib/php/test/Resources/ThriftTest.thrift
127 compiler/cpp/thrift --gen php:classmap,server,rest,nsglobal="Classmap" -r --out ./lib/php/test/Resources/packages/phpcm lib/php/test/Resources/ThriftTest.thrift
Volodymyr Panivko8e828c02024-02-19 11:34:48 +0100128
129 - name: Run Tests
130 run: vendor/bin/phpunit -c lib/php/phpunit.xml
131
Jiayu Liud21e95a2022-10-09 08:49:29 +0800132 lib-go:
133 needs: compiler
Sven Roederer502a46a2024-07-06 05:56:05 +0200134 runs-on: ubuntu-22.04
Yuxuan 'fishy' Wang19c13b42022-10-12 14:13:15 -0700135 strategy:
136 matrix:
137 go:
Yuxuan 'fishy' Wang875178c2023-11-17 12:36:31 -0800138 - '1.22'
Yuxuan 'fishy' Wang91565d42024-08-14 09:01:15 -0700139 - '1.23'
Yuxuan 'fishy' Wange4970302023-06-27 09:47:58 -0700140 fail-fast: false
Jiayu Liud21e95a2022-10-09 08:49:29 +0800141 steps:
dependabot[bot]a14231c2023-10-04 18:33:29 -0400142 - uses: actions/checkout@v4
Jiayu Liud21e95a2022-10-09 08:49:29 +0800143
dependabot[bot]1ebfcf82024-01-03 16:59:31 +0000144 - uses: actions/setup-go@v5
Jiayu Liud21e95a2022-10-09 08:49:29 +0800145 with:
Yuxuan 'fishy' Wang19c13b42022-10-12 14:13:15 -0700146 go-version: ${{ matrix.go }}
Jiayu Liud21e95a2022-10-09 08:49:29 +0800147
148 - name: Install dependencies
149 run: |
150 sudo apt-get update -yq
151 sudo apt-get install -y --no-install-recommends $BUILD_DEPS
152
153 - name: Run bootstrap
154 run: ./bootstrap.sh
155
156 - name: Run configure
157 run: |
Jiayu Liu1e3d90d2023-04-14 23:57:33 +0800158 ./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-go/with-go/')
Jiayu Liud21e95a2022-10-09 08:49:29 +0800159
Sven Roederer18b0de62024-07-06 03:59:37 +0200160 - uses: actions/download-artifact@v4
Jiayu Liud21e95a2022-10-09 08:49:29 +0800161 with:
162 name: thrift-compiler
163 path: compiler/cpp
164
165 - name: Run thrift-compiler
166 run: |
167 chmod a+x compiler/cpp/thrift
168 compiler/cpp/thrift -version
169
170 - name: Run make for go
171 run: make -C lib/go
172
Yuxuan 'fishy' Wang19c13b42022-10-12 14:13:15 -0700173 - name: Run make check for lib/go
Jiayu Liud21e95a2022-10-09 08:49:29 +0800174 run: make -C lib/go check
175
Yuxuan 'fishy' Wang19c13b42022-10-12 14:13:15 -0700176 - name: Run make check for test/go
177 run: make -C test/go check
178
Jiayu Liud21e95a2022-10-09 08:49:29 +0800179 - name: Run make precross for go test
180 run: make -C test/go precross
181
182 - name: Upload go precross artifacts
Yuxuan 'fishy' Wang91565d42024-08-14 09:01:15 -0700183 if: matrix.go == '1.23'
Sven Roederer18b0de62024-07-06 03:59:37 +0200184 uses: actions/upload-artifact@v4
Jiayu Liud21e95a2022-10-09 08:49:29 +0800185 with:
186 name: go-precross
187 if-no-files-found: error
188 path: |
189 test/go/bin/*
190 retention-days: 3
191
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800192 lib-java-kotlin:
193 needs: compiler
Sven Roederer502a46a2024-07-06 05:56:05 +0200194 runs-on: ubuntu-22.04
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800195 env:
Jiayu Liud40dd722023-10-19 08:37:49 +0800196 GRADLE_VERSION: "8.4"
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800197 steps:
dependabot[bot]a14231c2023-10-04 18:33:29 -0400198 - uses: actions/checkout@v4
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800199
dependabot[bot]f4b6d962023-12-01 06:30:44 +0000200 - uses: actions/setup-java@v4
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800201 with:
202 distribution: temurin
Jiayu Liu92b007f2022-10-14 13:16:18 +0800203 java-version: 17
Jiayu Liubcac9782022-05-07 08:35:09 +0800204 cache: "gradle"
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800205
206 - name: Install dependencies
207 run: |
208 sudo apt-get update -yq
209 sudo apt-get install -y --no-install-recommends $BUILD_DEPS
210 sudo apt-get install -y wget unzip ant maven
211
212 - name: Setup gradle
213 run: |
214 wget https://services.gradle.org/distributions/gradle-$GRADLE_VERSION-bin.zip -q -O /tmp/gradle-$GRADLE_VERSION-bin.zip
Jiayu Liud40dd722023-10-19 08:37:49 +0800215 (echo "3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae /tmp/gradle-$GRADLE_VERSION-bin.zip" | sha256sum -c -)
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800216 unzip -d /tmp /tmp/gradle-$GRADLE_VERSION-bin.zip
217 sudo mv /tmp/gradle-$GRADLE_VERSION /usr/local/gradle
218 sudo ln -s /usr/local/gradle/bin/gradle /usr/local/bin
219 gradle --version
220
Jiayu Liubcac9782022-05-07 08:35:09 +0800221 - name: Run spotlessCheck for Java
Jiayu Liu53ec0822022-05-06 12:56:42 +0800222 run: |
223 cd lib/java
224 gradle spotlessCheck
225
Jiayu Liubcac9782022-05-07 08:35:09 +0800226 - name: Run ktfmtCheck for Kotlin
227 run: |
228 cd lib/kotlin
229 gradle ktfmtCheck
230
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800231 - name: Run bootstrap
232 run: ./bootstrap.sh
233
234 - name: Run configure
235 run: |
Jiayu Liu1e3d90d2023-04-14 23:57:33 +0800236 ./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-java/with-java/' | sed 's/without-kotlin/with-kotlin/')
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800237
Sven Roederer18b0de62024-07-06 03:59:37 +0200238 - uses: actions/download-artifact@v4
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800239 with:
240 name: thrift-compiler
241 path: compiler/cpp
242
243 - name: Run thrift-compiler
244 run: |
245 chmod a+x compiler/cpp/thrift
246 compiler/cpp/thrift -version
247
Jiayu Liubcac9782022-05-07 08:35:09 +0800248 - name: Run make for java
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800249 run: make -C lib/java
250
Jiayu Liu5b158382022-05-12 00:20:37 +0800251 # this will invoke publishToMavenLocal and install locally
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800252 - name: Run make install for java
253 run: make -C lib/java install
254
255 - name: Upload java libthrift artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200256 uses: actions/upload-artifact@v4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800257 with:
258 name: libthrift
259 if-no-files-found: error
260 path: ~/.m2/repository/org/apache/thrift
261
Jiayu Liubcac9782022-05-07 08:35:09 +0800262 - name: Run make check for java
263 run: make -C lib/java check
264
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800265 - name: Run make precross for java
266 run: make -C lib/java precross
267
268 - name: Upload java precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200269 uses: actions/upload-artifact@v4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800270 with:
271 name: java-precross
272 if-no-files-found: error
273 path: |
274 lib/java/build/functionalTestJar/
275 lib/java/build/runclient
276 lib/java/build/runnonblockingserver
277 lib/java/build/runserver
278 lib/java/build/runservletserver
279 retention-days: 3
280
Jiayu Liubcac9782022-05-07 08:35:09 +0800281 - name: Run make for kotlin
Jiayu Liuc77d91a2022-05-03 20:55:50 +0800282 run: make -C lib/kotlin
Jiayu Liubcac9782022-05-07 08:35:09 +0800283
284 - name: Run make check for kotlin
285 run: make -C lib/kotlin check
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800286
287 - name: Run make precross for kotlin
288 run: make -C lib/kotlin precross
289
290 - name: Upload kotlin precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200291 uses: actions/upload-artifact@v4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800292 with:
293 name: kotlin-precross
294 if-no-files-found: error
295 path: |
296 lib/kotlin/cross-test-client/build/install/TestClient/
297 lib/kotlin/cross-test-server/build/install/TestServer/
298 retention-days: 3
299
Kino Roya9da9eb2022-10-07 23:13:01 -0700300 lib-swift:
301 needs: compiler
Sven Roederer502a46a2024-07-06 05:56:05 +0200302 runs-on: ubuntu-22.04
Kino Roya9da9eb2022-10-07 23:13:01 -0700303 steps:
dependabot[bot]a14231c2023-10-04 18:33:29 -0400304 - uses: actions/checkout@v4
Jiayu Liud21e95a2022-10-09 08:49:29 +0800305
Kino Roya9da9eb2022-10-07 23:13:01 -0700306 - name: Run bootstrap
307 run: ./bootstrap.sh
308
309 - name: Run configure
310 run: |
Jiayu Liu1e3d90d2023-04-14 23:57:33 +0800311 ./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-swift/with-swift/')
Jiayu Liud21e95a2022-10-09 08:49:29 +0800312
Sven Roederer18b0de62024-07-06 03:59:37 +0200313 - uses: actions/download-artifact@v4
Kino Roya9da9eb2022-10-07 23:13:01 -0700314 with:
315 name: thrift-compiler
316 path: compiler/cpp
317
318 - name: Run thrift-compiler
319 run: |
320 chmod a+x compiler/cpp/thrift
321 compiler/cpp/thrift -version
Jiayu Liud21e95a2022-10-09 08:49:29 +0800322
Kino Roya9da9eb2022-10-07 23:13:01 -0700323 - name: Run make precross for swift
324 run: make -C test/swift precross
325
326 - name: Upload swift precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200327 uses: actions/upload-artifact@v4
Kino Roya9da9eb2022-10-07 23:13:01 -0700328 with:
329 name: swift-precross
330 if-no-files-found: error
331 path: |
332 test/swift/CrossTests/.build/x86_64-unknown-linux-gnu/debug/TestServer
333 test/swift/CrossTests/.build/x86_64-unknown-linux-gnu/debug/TestClient
334 retention-days: 3
335
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800336 lib-rust:
337 needs: compiler
Sven Roederer502a46a2024-07-06 05:56:05 +0200338 runs-on: ubuntu-22.04
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800339 env:
Jiayu Liufbfa52c2023-11-07 13:47:24 +0800340 TOOLCHAIN_VERSION: 1.65.0
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800341 steps:
dependabot[bot]a14231c2023-10-04 18:33:29 -0400342 - uses: actions/checkout@v4
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800343
344 - name: Install dependencies
345 run: |
346 sudo apt-get update -yq
347 sudo apt-get install -y --no-install-recommends curl $BUILD_DEPS
348
349 - name: Setup cargo
350 run: |
351 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
352 rustup update
353 rustup install $TOOLCHAIN_VERSION
354 rustup default $TOOLCHAIN_VERSION
355 rustup --version
356 cargo --version
357 rustc --version
358
359 - name: Run bootstrap
360 run: ./bootstrap.sh
361
362 - name: Run configure
363 run: |
Jiayu Liu1e3d90d2023-04-14 23:57:33 +0800364 ./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-rs/with-rs/')
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800365
Sven Roederer18b0de62024-07-06 03:59:37 +0200366 - uses: actions/download-artifact@v4
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800367 with:
368 name: thrift-compiler
369 path: compiler/cpp
370
371 - name: Run thrift-compiler
372 run: |
373 chmod a+x compiler/cpp/thrift
374 compiler/cpp/thrift -version
375
376 - name: Run make for rust
377 run: make -C lib/rs
378
379 - name: Run make check for rust
380 run: make -C lib/rs check
381
382 - name: Run make test for rust
383 run: make -C lib/rs/test check
384
385 - name: Run make precross for test rust
386 run: make -C test/rs precross
387
388 - name: Upload rust precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200389 uses: actions/upload-artifact@v4
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800390 with:
391 name: rs-precross
392 if-no-files-found: error
393 path: |
394 test/rs/bin/test_server
395 test/rs/bin/test_client
396 retention-days: 3
397
398 - name: Run make test_recursive for rust
399 run: make -C lib/rs/test_recursive check
400
Jiayu Liu6f339002023-04-20 07:39:35 +0800401 lib-python:
402 needs: compiler
Sven Roederer502a46a2024-07-06 05:56:05 +0200403 runs-on: ubuntu-22.04
Jiayu Liu6f339002023-04-20 07:39:35 +0800404 strategy:
405 matrix:
Yuxuan 'fishy' Wange4970302023-06-27 09:47:58 -0700406 python-version:
407 - "3.x"
408 fail-fast: false
Jiayu Liu6f339002023-04-20 07:39:35 +0800409 steps:
dependabot[bot]a14231c2023-10-04 18:33:29 -0400410 - uses: actions/checkout@v4
Jiayu Liu6f339002023-04-20 07:39:35 +0800411
412 - name: Install dependencies
413 run: |
414 sudo apt-get update -yq
415 sudo apt-get install -y --no-install-recommends $BUILD_DEPS
416 sudo apt-get install -y --no-install-recommends curl openssl ca-certificates
417
418 - name: Set up Python
dependabot[bot]30c28452024-01-03 16:59:14 +0000419 uses: actions/setup-python@v5
Jiayu Liu6f339002023-04-20 07:39:35 +0800420 with:
421 python-version: ${{ matrix.python-version }}
422
423 - name: Python setup
424 run: |
425 python -m pip install --upgrade pip setuptools wheel flake8 tornado twisted zope.interface
426 python --version
427 pip --version
428
Jiayu Liu6f339002023-04-20 07:39:35 +0800429 - name: Run bootstrap
430 run: ./bootstrap.sh
431
Jiayu Liu6f339002023-04-20 07:39:35 +0800432 - name: Run configure 3.x
Yuxuan 'fishy' Wange4970302023-06-27 09:47:58 -0700433 if: matrix.python-version == '3.x'
Jiayu Liu6f339002023-04-20 07:39:35 +0800434 run: |
435 ./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-py3/with-py3/')
436
Sven Roederer18b0de62024-07-06 03:59:37 +0200437 - uses: actions/download-artifact@v4
Jiayu Liu6f339002023-04-20 07:39:35 +0800438 with:
439 name: thrift-compiler
440 path: compiler/cpp
441
442 - name: Run thrift-compiler
443 run: |
444 chmod a+x compiler/cpp/thrift
445 compiler/cpp/thrift -version
446
447 - name: Run make for python
448 run: make -C lib/py
449
450 - name: Run make install for python
451 run: sudo make -C lib/py install
452
453 # - name: Run make install-exec-hook for python
454 # run: sudo make -C lib/py install-exec-hook
455
456 - name: Run make check for python
457 run: make -C lib/py check
458
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800459 cross-test:
460 needs:
461 - lib-java-kotlin
Kino Roya9da9eb2022-10-07 23:13:01 -0700462 - lib-swift
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800463 - lib-rust
Jiayu Liud21e95a2022-10-09 08:49:29 +0800464 - lib-go
Jiayu Liu6f339002023-04-20 07:39:35 +0800465 - lib-python
Sven Roederer502a46a2024-07-06 05:56:05 +0200466 runs-on: ubuntu-22.04
Jiayu Liu790d4cb2023-04-27 11:35:17 +0800467 strategy:
468 matrix:
469 server_lang: ['java', 'kotlin', 'go', 'rs', 'swift']
470 # we always use comma join as many client langs as possible, to reduce the number of jobs
471 client_lang: ['java,kotlin', 'go,rs', 'swift']
472 fail-fast: false
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800473 steps:
dependabot[bot]a14231c2023-10-04 18:33:29 -0400474 - uses: actions/checkout@v4
Jiayu Liud21e95a2022-10-09 08:49:29 +0800475
dependabot[bot]30c28452024-01-03 16:59:14 +0000476 - uses: actions/setup-python@v5
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800477 with:
478 python-version: "3.x"
Jiayu Liud21e95a2022-10-09 08:49:29 +0800479
dependabot[bot]f4b6d962023-12-01 06:30:44 +0000480 - uses: actions/setup-java@v4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800481 with:
482 distribution: temurin
Jiayu Liube73a572023-04-14 11:02:43 +0800483 # here we intentionally use an older version so that we also verify Java 17 compiles to it
Fokko Driesprong0b14a1b2023-04-14 11:06:15 +0200484 java-version: 8
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800485 cache: "gradle"
486
Jiayu Liud21e95a2022-10-09 08:49:29 +0800487 - name: Install openssl and certificates (for SSL tests)
488 run: |
489 sudo apt-get update -yq
490 sudo apt-get install -y --no-install-recommends openssl ca-certificates
491
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800492 - name: Download java precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200493 uses: actions/download-artifact@v4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800494 with:
495 name: java-precross
496 path: lib/java/build
497
498 - name: Download kotlin precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200499 uses: actions/download-artifact@v4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800500 with:
501 name: kotlin-precross
502 path: lib/kotlin
503
Kino Roya9da9eb2022-10-07 23:13:01 -0700504 - name: Download swift precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200505 uses: actions/download-artifact@v4
Kino Roya9da9eb2022-10-07 23:13:01 -0700506 with:
507 name: swift-precross
508 path: test/swift/CrossTests/.build/x86_64-unknown-linux-gnu/debug
509
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800510 - name: Download rust precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200511 uses: actions/download-artifact@v4
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800512 with:
513 name: rs-precross
514 path: test/rs/bin
515
Jiayu Liud21e95a2022-10-09 08:49:29 +0800516 - name: Download go precross artifacts
Sven Roederer18b0de62024-07-06 03:59:37 +0200517 uses: actions/download-artifact@v4
Jiayu Liud21e95a2022-10-09 08:49:29 +0800518 with:
519 name: go-precross
520 path: test/go/bin
521
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800522 - name: Set back executable flags
523 run: |
524 chmod a+x \
525 lib/java/build/run* \
526 lib/kotlin/cross-test-client/build/install/TestClient/bin/* \
Jiayu Liu0aad2ae2022-10-08 13:22:24 +0800527 lib/kotlin/cross-test-server/build/install/TestServer/bin/* \
Kino Roya9da9eb2022-10-07 23:13:01 -0700528 test/swift/CrossTests/.build/x86_64-unknown-linux-gnu/debug/* \
Jiayu Liud21e95a2022-10-09 08:49:29 +0800529 test/rs/bin/* \
530 test/go/bin/*
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800531
532 - name: Run cross test
533 env:
534 THRIFT_CROSSTEST_CONCURRENCY: 4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800535 run: |
536 python test/test.py \
537 --retry-count 5 \
538 --skip-known-failures \
Jiayu Liu790d4cb2023-04-27 11:35:17 +0800539 --server ${{ matrix.server_lang }} \
540 --client ${{ matrix.client_lang }}
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800541
542 - name: Upload log files from failed cross test runs
Sven Roederer18b0de62024-07-06 03:59:37 +0200543 uses: actions/upload-artifact@v4
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800544 if: failure()
545 with:
Sven Roederer18b0de62024-07-06 03:59:37 +0200546 name: cross-test-log_${{ matrix.server_lang }}-${{ matrix.client_lang }}
Jiayu Liuab83ffc2022-05-10 01:56:30 +0800547 path: test/log/
548 retention-days: 3
Jiayu Liu6f339002023-04-20 07:39:35 +0800549