chore: add free disk in actions (#429)

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2024-04-28 21:41:51 +08:00 committed by GitHub
parent b271aef323
commit e2bc48aad1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 31 additions and 8 deletions

View File

@ -13,6 +13,17 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 480
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Check out code
uses: actions/checkout@v4
with:
@ -94,6 +105,17 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 480
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Check out code
uses: actions/checkout@v4
with:

16
Cargo.lock generated
View File

@ -934,7 +934,7 @@ dependencies = [
[[package]]
name = "dragonfly-client"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"anyhow",
"bytes",
@ -997,7 +997,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-backend"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"dragonfly-client-core",
"futures",
@ -1015,7 +1015,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-config"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"dragonfly-client-core",
"home",
@ -1034,7 +1034,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-core"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"libloading",
"reqwest",
@ -1045,7 +1045,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-init"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"anyhow",
"clap",
@ -1061,7 +1061,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-storage"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"base16ct",
"chrono",
@ -1084,7 +1084,7 @@ dependencies = [
[[package]]
name = "dragonfly-client-util"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"dragonfly-api",
"dragonfly-client-core",
@ -1542,7 +1542,7 @@ dependencies = [
[[package]]
name = "hdfs"
version = "0.1.40"
version = "0.1.41"
dependencies = [
"dragonfly-client-backend",
"dragonfly-client-core",

View File

@ -78,6 +78,7 @@ tokio-rustls = "0.25.0-alpha.4"
http-body-util = "0.1.0"
futures-util = "0.3.30"
termion = "3.0.0"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version = "0.5.4", features = ["profiling", "unprefixed_malloc_on_supported_platforms"] }