Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace crates-index with tame-index #506

Merged
merged 9 commits into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1250,6 +1250,9 @@ jobs:
# - cargo-semver-checks detects the semver break we've manufactured.
name: 'Semver: ref-slice fork'
runs-on: ubuntu-latest
strategy:
matrix:
protocol: ["git", "sparse"]
needs:
- build-binary
steps:
Expand Down Expand Up @@ -1294,6 +1297,8 @@ jobs:

- name: Run semver-checks
continue-on-error: true
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: ${{ matrix.protocol }}
run: |
cd semver
set -euo pipefail
Expand Down Expand Up @@ -1342,6 +1347,9 @@ jobs:
# (see https://github.com/frewsxcv/rust-crates-index/issues/97).
name: 'Semver: ref-slice fork (Windows)'
runs-on: windows-latest
strategy:
matrix:
protocol: ["git", "sparse"]
needs:
- build-binary-windows
steps:
Expand Down Expand Up @@ -1387,6 +1395,8 @@ jobs:
- name: Run cargo-semver-checks
continue-on-error: true
id: semver_checks
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: ${{ matrix.protocol }}
run: |
cd semver
..\bins\cargo-semver-checks.exe semver-checks check-release --manifest-path="..\subject\Cargo.toml" 2>&1 | tee output
Expand Down
Loading