docs: move the runnable starter to rc1
This commit is contained in:
+4
-4
@@ -11,10 +11,10 @@ Set-Location $repoRoot
|
||||
$env:GOWORK = "off"
|
||||
|
||||
$himesan = if ($env:HIMESAN_BIN) { $env:HIMESAN_BIN } else { "himesan" }
|
||||
$expectedCompilerVersion = "v1.0.0-beta.2"
|
||||
$expectedRuntimeVersion = "v1.0.0-beta.1"
|
||||
$expectedCompilerVersion = "v1.0.0-rc.1"
|
||||
$expectedRuntimeVersion = "v1.0.0-rc.1"
|
||||
if (-not (Get-Command $himesan -ErrorAction SilentlyContinue)) {
|
||||
throw "himesan was not found; install v1.0.0-beta.2 or set HIMESAN_BIN"
|
||||
throw "himesan was not found; install v1.0.0-rc.1 or set HIMESAN_BIN"
|
||||
}
|
||||
|
||||
function Assert-LastExitCode([string]$Step) {
|
||||
@@ -88,4 +88,4 @@ if ($dependencies | Where-Object { $_ -match '^gamertan\.com/sandwich-hime$|^gam
|
||||
throw "production dependency graph contains the Sandwich Hime compiler"
|
||||
}
|
||||
|
||||
Write-Output "verified Beta 2 compiler, Beta 1 runtime, deterministic generation, tests, vet, build, and runtime-only production dependencies"
|
||||
Write-Output "verified RC.1 compiler and runtime, deterministic generation, tests, vet, build, and runtime-only production dependencies"
|
||||
|
||||
+4
-4
@@ -7,10 +7,10 @@ repo_root=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
|
||||
cd "$repo_root"
|
||||
|
||||
himesan_bin=${HIMESAN_BIN:-himesan}
|
||||
expected_compiler_version=v1.0.0-beta.2
|
||||
expected_runtime_version=v1.0.0-beta.1
|
||||
expected_compiler_version=v1.0.0-rc.1
|
||||
expected_runtime_version=v1.0.0-rc.1
|
||||
if ! command -v "$himesan_bin" >/dev/null 2>&1; then
|
||||
echo "himesan was not found; install v1.0.0-beta.2 or set HIMESAN_BIN" >&2
|
||||
echo "himesan was not found; install v1.0.0-rc.1 or set HIMESAN_BIN" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
@@ -65,4 +65,4 @@ if grep -Eq '^gamertan\.com/sandwich-hime$|^gamertan\.com/sandwich-hime/(cmd|int
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "verified Beta 2 compiler, Beta 1 runtime, deterministic generation, tests, vet, build, and runtime-only production dependencies"
|
||||
echo "verified RC.1 compiler and runtime, deterministic generation, tests, vet, build, and runtime-only production dependencies"
|
||||
|
||||
Reference in New Issue
Block a user