From ec6efa1632160acb97292b506e9cf089df46328d Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Thu, 22 Feb 2024 18:49:55 +0100 Subject: [PATCH] fix: Disable debug information in CI workflow --- .github/workflows/ci.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51fbb62cf2..f87077b516 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,10 @@ on: schedule: - cron: "0 6 * * 1-5" +env: + CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse + CARGO_PROFILE_DEV_DEBUG: false + jobs: check: name: Run checks on ${{ matrix.os }} @@ -41,18 +45,12 @@ jobs: - name: Code format check run: cargo fmt --check - env: - CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse - name: Clippy run: cargo clippy --all-targets -- --deny warnings - env: - CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse - name: Clippy unstable targets run: cargo clippy --all-targets --features unstable -- --deny warnings - env: - CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse - name: Clippy all features if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest' }} @@ -64,8 +62,6 @@ jobs: - name: Perform no_std checks run: cargo check --bin nostd_check --target x86_64-unknown-none --manifest-path ci/nostd-check/Cargo.toml - env: - CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse test: name: Run tests on ${{ matrix.os }} @@ -95,14 +91,12 @@ jobs: - name: Run tests run: cargo nextest run --exclude zenoh-examples --exclude zenoh-plugin-example --workspace env: - CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse ASYNC_STD_THREAD_COUNT: 4 - name: Run tests with SHM if: ${{ matrix.os == 'ubuntu-latest' }} run: cargo nextest run -F shared-memory -F transport_unixpipe -p zenoh-transport env: - CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse ASYNC_STD_THREAD_COUNT: 4 - name: Check for feature leaks @@ -112,7 +106,6 @@ jobs: - name: Run doctests run: cargo test --doc env: - CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse ASYNC_STD_THREAD_COUNT: 4 # NOTE: In GitHub repository settings, the "Require status checks to pass