From 9d3a84c7567c4e69292f53b2a1f40d7f4a0025e6 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 30 Apr 2020 14:13:26 -0700 Subject: [PATCH] Minor fixes to release scripts (#1639) - We still saw a timeout with 20 second pauses; bump to 30 seconds. - wasmtime-py is now in a separate repository --- scripts/publish-cranelift.sh | 2 +- scripts/publish-wasmtime.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/publish-cranelift.sh b/scripts/publish-cranelift.sh index 78a639dea2..5e5c252e4f 100755 --- a/scripts/publish-cranelift.sh +++ b/scripts/publish-cranelift.sh @@ -36,7 +36,7 @@ do # Sleep for a few seconds to allow the server to update the index. # https://internals.rust-lang.org/t/changes-to-how-crates-io-handles-index-updates/9608 - echo sleep 20 + echo sleep 30 done echo git tag cranelift-v$(grep version cranelift/Cargo.toml | head -n 1 | cut -d '"' -f 2) diff --git a/scripts/publish-wasmtime.sh b/scripts/publish-wasmtime.sh index ab30fce56c..7b7908b1c8 100755 --- a/scripts/publish-wasmtime.sh +++ b/scripts/publish-wasmtime.sh @@ -35,7 +35,6 @@ for cargo_toml in \ crates/api/Cargo.toml \ crates/wasi/Cargo.toml \ crates/wast/Cargo.toml \ - crates/misc/py/Cargo.toml \ crates/misc/rust/macro/Cargo.toml \ crates/misc/rust/Cargo.toml \ Cargo.toml \ @@ -50,7 +49,7 @@ for cargo_toml in \ # Sleep for a few seconds to allow the server to update the index. # https://internals.rust-lang.org/t/changes-to-how-crates-io-handles-index-updates/9608 - echo sleep 20 + echo sleep 30 done echo git tag v$(grep "version =" Cargo.toml | head -n 1 | cut -d '"' -f 2)