Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Aug 27, 2024
1 parent 942e478 commit c863390
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,12 @@ jobs:
- name: Build Python
shell: msys2 {0}
env:
CC: cc
CXX: c++
run: |
set -ex
if [[ "${{ matrix.msystem }}" == "CLANG64" ]] || [[ "${{ matrix.msystem }}" == "CLANG32" ]]; then
export CC=clang
export CXX=clang++
fi
autoreconf -vfi
rm -Rf _build && mkdir _build && cd _build
Expand All @@ -82,6 +81,9 @@ jobs:
- name: Run Smoke Test (build)
shell: msys2 {0}
env:
CC: cc
CXX: c++
run: |
export SETUPTOOLS_USE_DISTUTILS=stdlib
SMOKETESTS="$(pwd)/mingw_smoketests.py"
Expand All @@ -91,6 +93,9 @@ jobs:
- name: Run tests
shell: msys2 {0}
env:
CC: cc
CXX: c++
run: |
export SETUPTOOLS_USE_DISTUTILS=stdlib
IGNOREFILE="$(pwd)/mingw_ignorefile.txt"
Expand All @@ -100,6 +105,9 @@ jobs:
- name: Run broken tests
continue-on-error: true
shell: msys2 {0}
env:
CC: cc
CXX: c++
run: |
export SETUPTOOLS_USE_DISTUTILS=stdlib
IGNOREFILE="$(pwd)/mingw_ignorefile.txt"
Expand Down Expand Up @@ -135,6 +143,9 @@ jobs:
- name: Run Smoke Test (installed)
shell: msys2 {0}
env:
CC: cc
CXX: c++
run: |
export SETUPTOOLS_USE_DISTUTILS=stdlib
SMOKETESTS="$(pwd)/mingw_smoketests.py"
Expand Down

0 comments on commit c863390

Please sign in to comment.