diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3ccfcf9833e5..d6bc4ba24007 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -727,7 +727,7 @@ jobs: ./util/buildRelease/smokeTest test-homebrew: - if: github.event_name == 'merge_group' || github.event_name == 'push' + # if: github.event_name == 'merge_group' || github.event_name == 'push' strategy: fail-fast: false matrix: diff --git a/util/packaging/docker/test/brew_install.bash b/util/packaging/docker/test/brew_install.bash index e7a90837f797..a7f2ce406ba2 100755 --- a/util/packaging/docker/test/brew_install.bash +++ b/util/packaging/docker/test/brew_install.bash @@ -32,4 +32,4 @@ brew test-bot --only-formulae-dependents --junit --testing-formulae=chapel --ski # This is the bulk of the testing and the same command that Homebrew CI runs brew test-bot --skip-online-checks --only-formulae --junit --only-json-tab --skip-dependents --testing-formulae="chapel" --added-formulae="" --deleted-formulae="" \ - | awk 'tolower($0)~/failed steps? ignored/{r=1} 1; END{exit(r)}' + | tee /dev/stdout | awk 'tolower($0)~/failed steps? ignored/{r=1} 1; END{exit(r)}'