Skip to content

Commit dad4387

Browse files
fix: patch rquickjs-sys and remove clang dependency (#14817)
Signed-off-by: Runji Wang <[email protected]>
1 parent 5576c2c commit dad4387

File tree

5 files changed

+9
-58
lines changed

5 files changed

+9
-58
lines changed

Cargo.lock

Lines changed: 3 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ arrow-flight = "50"
133133
arrow-select = "50"
134134
arrow-ord = "50"
135135
arrow-row = "50"
136-
arrow-udf-js = { git = "https://github.com/risingwavelabs/arrow-udf.git", rev = "ea7664d" }
136+
arrow-udf-js = { git = "https://github.com/risingwavelabs/arrow-udf.git", rev = "7ba1c22" }
137137
arrow-udf-wasm = "0.1"
138138
arrow-array-deltalake = { package = "arrow-array", version = "48.0.1" }
139139
arrow-buffer-deltalake = { package = "arrow-buffer", version = "48.0.1" }
@@ -282,6 +282,8 @@ tokio-postgres = { git = "https://github.com/madsim-rs/rust-postgres.git", rev =
282282
futures-timer = { git = "https://github.com/madsim-rs/futures-timer.git", rev = "05b33b4" }
283283
# patch: unlimit 4MB message size for grpc client
284284
etcd-client = { git = "https://github.com/risingwavelabs/etcd-client.git", rev = "4e84d40" }
285+
# need binding on aarch64-unknown-linux-gnu, waiting for new release
286+
rquickjs-sys = { git = "https://github.com/DelSkayn/rquickjs.git", rev = "60696e8" }
285287

286288
[workspace.metadata.dylint]
287289
libraries = [{ path = "./lints" }]

ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN sed -i 's|http://archive.ubuntu.com/ubuntu|http://us-east-2.ec2.archive.ubun
1313
RUN apt-get update -yy && \
1414
DEBIAN_FRONTEND=noninteractive apt-get -y install make build-essential cmake protobuf-compiler curl parallel python3 python3-pip \
1515
openssl libssl-dev libsasl2-dev libcurl4-openssl-dev pkg-config bash openjdk-11-jdk wget unzip git tmux lld postgresql-client kafkacat netcat mysql-client \
16-
maven zstd libzstd-dev locales clang -yy \
16+
maven zstd libzstd-dev locales -yy \
1717
&& rm -rf /var/lib/{apt,dpkg,cache,log}/
1818

1919
SHELL ["/bin/bash", "-c"]

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN cd /risingwave/dashboard && npm i && npm run build-static && rm -rf node_mod
1919

2020
FROM base AS rust-base
2121

22-
RUN apt-get update && apt-get -y install make cmake protobuf-compiler curl bash lld unzip clang
22+
RUN apt-get update && apt-get -y install make cmake protobuf-compiler curl bash lld unzip
2323

2424
SHELL ["/bin/bash", "-c"]
2525

docker/Dockerfile.hdfs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apt-get update \
77

88
FROM base AS builder
99

10-
RUN apt-get update && apt-get -y install make cmake protobuf-compiler curl bash lld maven unzip clang
10+
RUN apt-get update && apt-get -y install make cmake protobuf-compiler curl bash lld maven unzip
1111

1212
SHELL ["/bin/bash", "-c"]
1313

0 commit comments

Comments
 (0)