From de00e0ac6eabef313ced1b9999952c461a6a78d1 Mon Sep 17 00:00:00 2001 From: Denis Biryukov Date: Fri, 9 Aug 2024 14:55:00 +0200 Subject: [PATCH 1/3] attempt to address ci no more space issue --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3566327b..1bdb61772 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,11 @@ on: schedule: - cron: "0 6 * * 1-5" +env: + CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse + CARGO_PROFILE_DEV_DEBUG: false + RUSTUP_WINDOWS_PATH_ADD_BIN: 1 + jobs: check_format: name: Check codebase format with clang-format From 93aea603d2a6cf67822fcbb82ecce0a3750ad41f Mon Sep 17 00:00:00 2001 From: Denis Biryukov Date: Fri, 9 Aug 2024 16:31:43 +0200 Subject: [PATCH 2/3] remove env settings --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bdb61772..2322ad2ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,8 +10,6 @@ on: env: CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse - CARGO_PROFILE_DEV_DEBUG: false - RUSTUP_WINDOWS_PATH_ADD_BIN: 1 jobs: check_format: From d7d9914e9c6393f3beff301c01ee3fef9d05b526 Mon Sep 17 00:00:00 2001 From: Denis Biryukov Date: Fri, 9 Aug 2024 16:49:21 +0200 Subject: [PATCH 3/3] add CARGO_PROFILE_DEV_DEBUG=false --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2322ad2ba..1b47d2da1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ on: env: CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse + CARGO_PROFILE_DEV_DEBUG: false jobs: check_format: