Skip to content

Commit 806307f

Browse files
committed
flowctl: build using clang instead of gcc
Switches to using clang instead of GCC in order to work around a compilation error in one of our dependencies, which is due to a bug in GCC 9. See: rustls/rustls#1967
1 parent f4b66f3 commit 806307f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/flowctl-release.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
# Linux build steps:
3434
- name: Build Linux
3535
if: matrix.config.os == 'ubuntu-20.04'
36+
env:
37+
CC: clang
38+
CXX: clang++
3639
run: |-
3740
cargo build -p flowctl --release && mv target/release/flowctl ${ASSET_NAME}
3841

0 commit comments

Comments
 (0)