From 57d347c5fe9462ec4461f426641ac9f9469b51bb Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Tue, 29 Mar 2022 16:48:56 +0100 Subject: [PATCH 1/2] qa/zcash/updatecheck.py: print status code and response of failed http requests. Signed-off-by: Daira Hopwood (cherry picked from commit c28b00425635fa2150035a13dd4d4be4eaf4db00) --- qa/zcash/updatecheck.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qa/zcash/updatecheck.py b/qa/zcash/updatecheck.py index 311fc0994..62f73c36f 100755 --- a/qa/zcash/updatecheck.py +++ b/qa/zcash/updatecheck.py @@ -199,6 +199,8 @@ class GithubTagReleaseLister: url = "https://api.github.com/repos/" + safe(self.org) + "/" + safe(self.repo) + "/git/refs/tags" r = requests.get(url, auth=requests.auth.HTTPBasicAuth(self.token.user(), self.token.password())) if r.status_code != 200: + print("API request failed (error %d)" % (r.status_code,), file=sys.stderr) + print(r.text, file=sys.stderr) raise RuntimeError("Request to GitHub tag API failed.") json = r.json() return list(map(lambda t: t["ref"].split("/")[-1], json)) @@ -208,6 +210,8 @@ class BerkeleyDbReleaseLister: url = "https://www.oracle.com/database/technologies/related/berkeleydb-downloads.html" r = requests.get(url) if r.status_code != 200: + print("API request failed (error %d)" % (r.status_code,), file=sys.stderr) + print(r.text, file=sys.stderr) raise RuntimeError("Request to Berkeley DB download directory failed.") page = r.text From 24c20d07e4def5bc16574bc2ce69c2b3acc3a891 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Tue, 29 Mar 2022 17:00:55 +0100 Subject: [PATCH 2/2] Postpone native_clang and libcxx 14.0.0. Signed-off-by: Daira Hopwood (cherry picked from commit 5abe1b82b4b41f5755d3f8b830e5df508c775443) --- qa/zcash/postponed-updates.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/zcash/postponed-updates.txt b/qa/zcash/postponed-updates.txt index c4732b96a..bf08d9635 100644 --- a/qa/zcash/postponed-updates.txt +++ b/qa/zcash/postponed-updates.txt @@ -18,6 +18,8 @@ native_ccache 4.5.1 2022-05-01 native_ccache 4.6 2022-05-01 # Clang is currently pinned to LLVM 13 +native_clang 14.0.0 2022-05-01 +libcxx 14.0.0 2022-05-01 # Rust is currently pinned to 1.59.0