From 0d5983b3543e4d6f76182289473e0804328ea4a5 Mon Sep 17 00:00:00 2001 From: Dmytro Kozhevin Date: Mon, 4 Nov 2024 19:05:24 -0500 Subject: [PATCH] Disable semver checks temporarily. The check is broken due to `arbitrary` crate update (https://github.com/rust-fuzz/arbitrary/issues/203). --- .github/workflows/rust.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e83decf87..f9c811e54 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,7 +17,11 @@ jobs: # temporarily disabling publish-dry-run, it appears to be broken with recent # changes to dependency specifications? # needs: [fmt, cackle, cargo-deny, check-git-rev-deps, build-and-test, publish-dry-run] - needs: [fmt, cackle, cargo-deny, check-git-rev-deps, semver-checks, build-and-test] + # needs: [fmt, cackle, cargo-deny, check-git-rev-deps, semver-checks, build-and-test] + # semver-checks is currently broken due to incompatible `arbitrary` crate + # update (https://github.com/rust-fuzz/arbitrary/issues/203). + # TODO: re-enable this as soon as the check has been fixed. + needs: [fmt, cackle, cargo-deny, check-git-rev-deps, build-and-test] runs-on: ubuntu-latest steps: - if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') @@ -58,7 +62,7 @@ jobs: - uses: actions/checkout@v3 - uses: stellar/actions/rust-check-git-rev-deps@main - semver-checks: + semver-checks: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3