From 3aafabab392f0a915f6b5c690fd73117e712e20e Mon Sep 17 00:00:00 2001 From: Zachary Kanfer Date: Fri, 2 Jun 2023 01:13:47 -0400 Subject: [PATCH 1/2] run parallel job builds independantly --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a928a0c1..7c04f17a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,8 @@ jobs: test: runs-on: ubuntu-latest strategy: + # continue running other jobs in the matrix when one fails + fail-fast: false matrix: racket-variant: ["BC", "CS"] # There is no "allow failures" option for GitHub Actions, but we test on From 31cef422be61e12bfe89f1a19bb9f72399cc2520 Mon Sep 17 00:00:00 2001 From: Zachary Kanfer Date: Sat, 3 Jun 2023 23:36:16 -0400 Subject: [PATCH 2/2] Migrate from requestbin to httpstat.us (#224) requestbin has been having problems -- the 200 endpoint is returning 504s. I'd like to see if httpstat.us is better. --- lib/client.arc.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client.arc.t b/lib/client.arc.t index 2e568bac..dfe9a134 100644 --- a/lib/client.arc.t +++ b/lib/client.arc.t @@ -39,7 +39,7 @@ (assert-same "Cookie: name=value; name2=value2; Expires=Wed, 09 Jun 2021;" (encode-cookies (list "name" "value" "name2" "value2" "Expires" "Wed, 09 Jun 2021"))))) (suite send-request - (test ping-httpbin + (test get-200 (assert-same "HTTP/1.1 200 OK" - (caar (mkreq "www.httpbin.org/status/200")))))) + (caar (mkreq "httpstat.us/200"))))))