Skip to content

Commit

Permalink
CI: add msys2 mingw test
Browse files Browse the repository at this point in the history
  • Loading branch information
naveen521kk committed Nov 17, 2022
1 parent 800fae9 commit 6918256
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,30 @@ jobs:
shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
run: tox

test_msys2_mingw:
strategy:
matrix:
include:
- { sys: mingw64, env: x86_64 }
# - { sys: mingw32, env: i686 }
# - { sys: ucrt64, env: ucrt-x86_64 }
# - { sys: clang64, env: clang-x86_64 }
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
install: |
mingw-w64-${{matrix.env}}-toolchain
mingw-w64-${{matrix.env}}-python
mingw-w64-${{matrix.env}}-python-pip
mingw-w64-${{matrix.env}}-python-tox
- name: Run tests
shell: msys2 {0}
run: |
tox
ci_setuptools:
# Integration testing with setuptools
strategy:
Expand Down

0 comments on commit 6918256

Please sign in to comment.