Skip to content

Commit

Permalink
Temporarily disable semver checks. (#1485)
Browse files Browse the repository at this point in the history
### What

Disable semver checks temporarily.

### Why

The check is broken due to `arbitrary` crate update
(rust-fuzz/arbitrary#203).

### Known limitations

N/A
  • Loading branch information
dmkozh authored Nov 5, 2024
1 parent bd0c80a commit b0220c0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b0220c0

Please sign in to comment.