From 0fd138a4e7dba3768e7d82450ede00d66ba9ae06 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 11 Sep 2021 13:54:24 +0200 Subject: [PATCH] Slightly simplify running the GUI tests in the Mac CI workflow No real changes, just don't use pipefail option when we're not using pipelines at all -- this was somewhat confusing. --- .github/workflows/ci_mac.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci_mac.yml b/.github/workflows/ci_mac.yml index 8e727440b3..c9ddd1a81f 100644 --- a/.github/workflows/ci_mac.yml +++ b/.github/workflows/ci_mac.yml @@ -206,8 +206,7 @@ jobs: export ASAN_OPTIONS=fast_unwind_on_malloc=0 # Exclude tests that are currently known to fail wx_tests_selection='~[valnum] ~wxPersistTLW ~wxPersistDVC ~wxTopLevel::Show ~wxFont::Weight ~wxFont::NativeFontInfo ~WebView ~RadioButton::Single ~RadioButton::Focus ~wxHtmlPrintout::Pagination ~ChoiceTestCase ~ComboBoxTestCase ~CheckListBoxTestCase ~ListBoxTestCase ~RearrangeListTestCase ~wxTextCtrl::GetBestSize ~TextCtrlTestCase ~ClippingBoxTestCase::wxClientDC ~wxExecute::RedirectUTF8 ~Ellipsization::NormalCase ~SpinCtrl::* ~SpinCtrlDouble::* ~NotebookTestCase ~SettingsTestCase ~XRC::LoadURL ~Window::Show ~Window::SizerErrors ~ModalDialogsTestCase ~Button::Click ~Button::Disabled ~wxDVC::GetItemRect ~wxDVC::AppendTextColumn ~Grid::KeyboardSelection ~Grid::CellClick ~Grid::ReorderedColumnsCellClick ~Grid::CellSelect ~wxStyledTextCtrl::AutoComp ~EvtLoopTestCase ~EventPropagationTestCase' - # Explicitly use bash because /bin/sh doesn't have pipefail option - /bin/bash -o pipefail -c "./test_gui $wx_tests_selection" + ./test_gui $wx_tests_selection - name: Building samples if: matrix.skip_testing != true && matrix.skip_samples != true