Skip to content

Commit 000f510

Browse files
fix file
1 parent c03d398 commit 000f510

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ jobs:
206206
exit 1
207207
fi
208208
209+
- name: Build with Kafka (cross) - FIXED
209210
if: matrix.use_cross
210211
env:
211212
LIBRDKAFKA_SSL_VENDORED: "1"
@@ -228,3 +229,11 @@ jobs:
228229
env | grep -E 'ZLIB_|OPENSSL_|PKG_CONFIG|LIBRDKAFKA'
229230
echo "=== NOW RUNNING CROSS BUILD (pre-build will show zlib paths) ==="
230231
cross build --target ${{ matrix.target }} --features kafka --release --verbose
232+
233+
- name: Build with Kafka (native)
234+
if: ${{ !matrix.use_cross }}
235+
env:
236+
CC: ${{ runner.os == 'Linux' && 'gcc-11' || '' }}
237+
CXX: ${{ runner.os == 'Linux' && 'g++-11' || '' }}
238+
LIBRDKAFKA_SSL_VENDORED: "1"
239+
run: cargo build --target ${{ matrix.target }} --features kafka --release

0 commit comments

Comments
 (0)