From f88e52a89eb162d2fc0a8abd3ec2c9b6aeea16c3 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Thu, 9 Sep 2021 19:21:05 -0400 Subject: [PATCH] CI (Windows): set `msys2 {0}` as the default shell for all Windows steps (#247) --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b818c322..d5ac8e88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,9 @@ jobs: - { sys: mingw32, env: i686 } - { sys: ucrt64, env: ucrt-x86_64 } # Experimental! - { sys: clang64, env: clang-x86_64 } # Experimental! + defaults: + run: + shell: msys2 {0} steps: - uses: actions/checkout@v2 - name: Set up the desired MSYS2 environment @@ -38,6 +41,4 @@ jobs: msystem: ${{matrix.sys}} install: base-devel mingw-w64-${{matrix.env}}-toolchain - run: make - shell: msys2 {0} - run: make test - shell: msys2 {0}