From dced01b565c9d02415439d6dc553ccaeeb812a60 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Sun, 12 Feb 2023 09:20:18 +0100 Subject: [PATCH] CI: add MSYS2 to PATH to make bash available during testing --- .github/workflows/binaries.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index b1f70d0..5c5b4e0 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -33,6 +33,17 @@ jobs: - uses: actions/checkout@v3 + - name: Setup MSYS2 (Windows) + if: ${{ runner.os == 'Windows' }} + run: echo "C:\msys64\mingw64\bin;C:\msys64\usr\bin" >> "${GITHUB_PATH}" + + - name: Info about command-line tools used in test-suite + run: | + which bash + which cat + which echo + continue-on-error: true + - name: Setup Haskell Stack uses: haskell/actions/setup@v2 id: setup