From 53c77ebf8e018f7577a16f513e73ece5a05248df Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Fri, 18 Oct 2024 08:03:08 +0200 Subject: [PATCH 1/2] Revert "log wget output" This reverts commit d7623ea60e672c4882d73d95e42638213e9f8320. --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bcc5d89928..398088204e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -203,9 +203,7 @@ commands: cd <> unset RAILS_ENV # avoid doing everything on the test environment bin/rails server -p 3000 & - wget --no-verbose --output-document output.html --tries=30 --retry-connrefused "http://localhost:3000<>" - cat output.html - grep "<>" output.html + wget --output-document - --tries=30 --retry-connrefused "http://localhost:3000<>" | grep "<>" echo "Exited with $?" kill $(cat "tmp/pids/server.pid") From 449222cc4e7482e87df25fde835499053b2a7c43 Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Fri, 18 Oct 2024 08:03:19 +0200 Subject: [PATCH 2/2] Revert "Fix installer test: Show wget output" This reverts commit 4840ccd59047bb84dd3658b340c3951f9ec32fe2. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 398088204e..0dc19b64d4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -203,7 +203,7 @@ commands: cd <> unset RAILS_ENV # avoid doing everything on the test environment bin/rails server -p 3000 & - wget --output-document - --tries=30 --retry-connrefused "http://localhost:3000<>" | grep "<>" + wget --quiet --output-document - --tries=30 --retry-connrefused "http://localhost:3000<>" | grep "<>" echo "Exited with $?" kill $(cat "tmp/pids/server.pid")