From 1051d9f0dacfbdceafa6ca1261e81b99f3a66a3a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 28 Jun 2021 01:02:47 +0100 Subject: [PATCH] Rename WINERUN environment variable to wxTEST_RUNNER Make the variable name wx-specific before starting to use it in wx tests too. --- .github/workflows/ci_msw_cross.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_msw_cross.yml b/.github/workflows/ci_msw_cross.yml index f680211709..26c8bf9d17 100644 --- a/.github/workflows/ci_msw_cross.yml +++ b/.github/workflows/ci_msw_cross.yml @@ -109,7 +109,7 @@ jobs: sudo apt-get -qq install $packages - echo "WINERUN=${winerun}" >> $GITHUB_ENV + echo "wxTEST_RUNNER=${winerun}" >> $GITHUB_ENV - name: Checkout uses: actions/checkout@v2 @@ -197,7 +197,7 @@ jobs: httpbin_launch - $WINERUN ./test || rc=$? + $wxTEST_RUNNER ./test || rc=$? if [ -n "$rc" ]; then httpbin_show_log @@ -207,4 +207,4 @@ jobs: - name: Run GUI tests working-directory: tests run: | - $WINERUN ./test_gui + $wxTEST_RUNNER ./test_gui