windows: Add update-workspace-hack.ps1
script (#28219)
Release Notes: - N/A
This commit is contained in:
parent
656302ee4c
commit
d60dbbc791
2 changed files with 38 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -131,13 +131,13 @@ jobs:
|
|||
- name: Check workspace-hack Cargo.toml is up-to-date
|
||||
run: |
|
||||
cargo hakari generate --diff || {
|
||||
echo "To fix, run script/update-workspace-hack";
|
||||
echo "To fix, run script/update-workspace-hack or script/update-workspace-hack.ps1";
|
||||
false
|
||||
}
|
||||
- name: Check all crates depend on workspace-hack
|
||||
run: |
|
||||
cargo hakari manage-deps --dry-run || {
|
||||
echo "To fix, run script/update-workspace-hack"
|
||||
echo "To fix, run script/update-workspace-hack or script/update-workspace-hack.ps1"
|
||||
false
|
||||
}
|
||||
|
||||
|
|
36
script/update-workspace-hack.ps1
Normal file
36
script/update-workspace-hack.ps1
Normal file
|
@ -0,0 +1,36 @@
|
|||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$HAKARI_VERSION = "0.9"
|
||||
|
||||
$scriptPath = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
Set-Location (Split-Path -Parent $scriptPath)
|
||||
|
||||
$hakariInstalled = $false
|
||||
try {
|
||||
$versionOutput = cargo hakari --version 2>&1
|
||||
if ($versionOutput -match "cargo-hakari $HAKARI_VERSION") {
|
||||
$hakariInstalled = $true
|
||||
}
|
||||
}
|
||||
catch {
|
||||
$hakariInstalled = $false
|
||||
}
|
||||
|
||||
if (-not $hakariInstalled) {
|
||||
Write-Host "Installing cargo-hakari@^$HAKARI_VERSION..."
|
||||
cargo install "cargo-hakari@^$HAKARI_VERSION"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
throw "Failed to install cargo-hakari@^$HAKARI_VERSION"
|
||||
}
|
||||
}
|
||||
else {
|
||||
Write-Host "cargo-hakari@^$HAKARI_VERSION is already installed."
|
||||
}
|
||||
|
||||
# update the workspace-hack crate
|
||||
cargo hakari generate
|
||||
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
||||
|
||||
# make sure workspace-hack is added as a dep for all crates in the workspace
|
||||
cargo hakari manage-deps
|
||||
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
Loading…
Add table
Add a link
Reference in a new issue