Skip to content

Commit

Permalink
flowctl: build using clang instead of gcc
Browse files Browse the repository at this point in the history
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
  • Loading branch information
psFried committed Oct 15, 2024
1 parent f4b66f3 commit 806307f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/flowctl-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
# Linux build steps:
- name: Build Linux
if: matrix.config.os == 'ubuntu-20.04'
env:
CC: clang
CXX: clang++
run: |-
cargo build -p flowctl --release && mv target/release/flowctl ${ASSET_NAME}
Expand Down

0 comments on commit 806307f

Please sign in to comment.