chore(ci/Dockerfile): add fio for client image (#976)

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2025-02-12 12:06:17 +08:00 committed by GitHub
parent d56dae38ab
commit 07d7d834a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 17 additions and 22 deletions

View File

@ -1,11 +1,6 @@
name: Docker
on:
pull_request:
branches:
- main
paths:
- 'ci/Dockerfile*'
push:
branches:
- main

16
Cargo.lock generated
View File

@ -938,7 +938,7 @@ dependencies = [
[[package]]
name = "dragonfly-client"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"blake3",
@ -1010,7 +1010,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-backend"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"dragonfly-api",
"dragonfly-client-core",
@ -1041,7 +1041,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-config"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"bytesize",
"bytesize-serde",
@ -1067,7 +1067,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-core"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"headers 0.4.0",
"hyper 1.5.2",
@ -1086,7 +1086,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-init"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"clap",
@ -1104,7 +1104,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-storage"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"base16ct",
"bincode",
@ -1130,7 +1130,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-util"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"base16ct",
"base64 0.22.1",
@ -1532,7 +1532,7 @@ dependencies = [
[[package]]
name = "hdfs"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"dragonfly-client-backend",
"dragonfly-client-core",

View File

@ -12,7 +12,7 @@ members = [
]
[workspace.package]
version = "0.2.9"
version = "0.2.10"
authors = ["The Dragonfly Developers"]
homepage = "https://d7y.io/"
repository = "https://github.com/dragonflyoss/client.git"
@ -22,13 +22,13 @@ readme = "README.md"
edition = "2021"
[workspace.dependencies]
dragonfly-client = { path = "dragonfly-client", version = "0.2.9" }
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.2.9" }
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.2.9" }
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.2.9" }
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.2.9" }
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.2.9" }
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.2.9" }
dragonfly-client = { path = "dragonfly-client", version = "0.2.10" }
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.2.10" }
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.2.10" }
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.2.10" }
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.2.10" }
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.2.10" }
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.2.10" }
thiserror = "1.0"
dragonfly-api = "=2.1.23"
reqwest = { version = "0.12.4", features = [

View File

@ -54,7 +54,7 @@ RUN go install github.com/google/pprof@latest
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends iperf3 wget curl \
RUN apt-get update && apt-get install -y --no-install-recommends iperf3 fio wget curl \
bash-completion procps apache2-utils ca-certificates binutils bpfcc-tools \
dnsutils iputils-ping vim linux-perf llvm graphviz \
&& rm -rf /var/lib/apt/lists/*