From 9bacf652b6fd4469586324403fad534ba4984485 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 | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e83decf87..b487ebb28 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,16 +58,19 @@ jobs: - uses: actions/checkout@v3 - uses: stellar/actions/rust-check-git-rev-deps@main - semver-checks: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: rustup update - - uses: stellar/binaries@v29 - with: - name: cargo-semver-checks - version: 0.35.0 - - run: cargo semver-checks --exclude soroban-simulation + # This check 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. + # semver-checks: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # - run: rustup update + # - uses: stellar/binaries@v29 + # with: + # name: cargo-semver-checks + # version: 0.35.0 + # - run: cargo semver-checks --exclude soroban-simulation build-and-test: strategy: