Skip to content

Commit 6a0e461

Browse files
authored
Revert "CI: Use cargo-binstall for pre-compiled binary installation (#11472)" (#11782)
This reverts commit 40456f5. For unknown reasons this seems to be causing "error: no such command: `deny`" errors on CI.
1 parent efa8945 commit 6a0e461

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- main
77
- master
8-
- binstall
98

109
pull_request:
1110

@@ -17,8 +16,6 @@ concurrency:
1716

1817
env:
1918
CARGO_TERM_COLOR: always
20-
# renovate: datasource=github-releases depName=cargo-bins/cargo-binstall
21-
BINSTALL_VERSION: 1.14.3
2219
# renovate: datasource=crate depName=cargo-deny versioning=semver
2320
CARGO_DENY_VERSION: 0.18.4
2421
# renovate: datasource=crate depName=cargo-machete versioning=semver
@@ -146,12 +143,10 @@ jobs:
146143
with:
147144
save-if: ${{ github.ref == 'refs/heads/main' }}
148145

149-
- run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/v${BINSTALL_VERSION}/install-from-binstall-release.sh | bash
150-
151-
- run: cargo binstall cargo-deny@${CARGO_DENY_VERSION}
146+
- run: cargo install cargo-deny --vers ${CARGO_DENY_VERSION}
152147
- run: cargo deny check
153148

154-
- run: cargo binstall cargo-machete@${CARGO_MACHETE_VERSION}
149+
- run: cargo install cargo-machete --vers ${CARGO_MACHETE_VERSION}
155150
- run: cargo machete
156151

157152
backend-test:

0 commit comments

Comments
 (0)