From 5565f0ab33c20d6854175cb8b0b33c2248750073 Mon Sep 17 00:00:00 2001 From: RamziA961 <60425857+RamziA961@users.noreply.github.com> Date: Mon, 2 Oct 2023 20:52:56 +0100 Subject: [PATCH] chore(ci): update features job to skip `tracing` feature Similar to ffi, the feature job will skip tracing as it is unstable and requires a cfg flag to compile without an error. Once #3326 is merged, subsequent PRs will fail the feature CI job without this change. --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 295e3c8773..36d1c885db 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -144,7 +144,7 @@ jobs: uses: taiki-e/install-action@cargo-hack - name: check --feature-powerset - run: cargo hack check --feature-powerset --depth 2 --skip ffi -Z avoid-dev-deps + run: cargo hack check --feature-powerset --depth 2 --skip ffi,tracing -Z avoid-dev-deps ffi: name: Test C API (FFI)