From 8ecf1f4edf7f1615a2941dcc69210a0135b3fed5 Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Fri, 18 Oct 2024 11:44:52 +0200 Subject: [PATCH] chore(IDX): exclude problematic target (#2125) Excluding problematic target (see https://github.com/dfinity/ic/pull/2103) to not degrade success rate of hourly workflow. --- ci/scripts/bazel-coverage.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/scripts/bazel-coverage.sh b/ci/scripts/bazel-coverage.sh index 3ae33c5d705..7bee367cafe 100755 --- a/ci/scripts/bazel-coverage.sh +++ b/ci/scripts/bazel-coverage.sh @@ -5,6 +5,8 @@ bazel query --universe_scope=//... \ "kind(test, //rs/...) except kind(test, allrdeps(attr('tags', 'canister', //rs/...)))" \ >cov_targets.txt +# exclude the target blelow because of flaky builds - https://github.com/dfinity/ic/pull/2103 +sed -i '/minter:principal_to_bytes_test/d' cov_targets.txt # shellcheck disable=SC2046,SC2086 bazel --output_base=/var/tmp/bazel-output/ coverage --config=ci --combined_report=lcov \ --test_timeout=3000 --combined_report=lcov $(