From 301b08b95d99e242b900bbf97f16d18d05fb9487 Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Tue, 7 Sep 2021 18:42:03 +0200 Subject: [PATCH] Execute GUI tests under wxOSX --- .github/workflows/ci_mac.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci_mac.yml b/.github/workflows/ci_mac.yml index 0542f28ab5..ee434524ed 100644 --- a/.github/workflows/ci_mac.yml +++ b/.github/workflows/ci_mac.yml @@ -199,6 +199,14 @@ jobs: exit $rc fi + - name: Testing GUI + if: matrix.skip_testing != true + working-directory: tests + run: | + export ASAN_OPTIONS=fast_unwind_on_malloc=0 + # Explicitly use bash because /bin/sh doesn't have pipefail option + /bin/bash -o pipefail -c "./test_gui" + - name: Building samples if: matrix.skip_testing != true && matrix.skip_samples != true run: |