Skip to content

Commit

Permalink
Add py3-cffi package for cqlsh (#3541)
Browse files Browse the repository at this point in the history
Installing cqlsh for the cassandra test container is failing and
the build attempts to compile cffi package, which requires gcc
and other development packages, including python-dev which is huge.
Bigger problem is this doesn't fail locally but does fail in CI
consistently.
  • Loading branch information
llinder authored May 30, 2023
1 parent ca7758d commit 307fd59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/test-images/zipkin-cassandra/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function is_cassandra_alive() {
is_cassandra_alive || exit 1

echo "*** Installing cqlsh"
apk add --update --no-cache python3 py3-pip gcc
apk add --update --no-cache python3 py3-pip py3-cffi
pip install -Iq cqlsh
function cql() {
cqlsh --cqlversion=${cqlversion} "$@" 127.0.0.1 ${temp_native_transport_port}
Expand Down

0 comments on commit 307fd59

Please sign in to comment.