From 1b924a958b683036f6c6629ee67743d3dc23c835 Mon Sep 17 00:00:00 2001 From: RamziA961 <60425857+RamziA961@users.noreply.github.com> Date: Sun, 1 Oct 2023 13:40:55 +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 f1c9fdfb51..ced225265a 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)