Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI for Cygwin #2909

Merged
merged 1 commit into from
Dec 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,25 @@ jobs:
${{ runner.os }},
${{ matrix.python }}

test_cygwin:
strategy:
matrix:
distutils:
- stdlib
- local
runs-on: windows-latest
env:
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }}
steps:
- uses: actions/checkout@v2
- name: Install Cygwin with Python and tox
run: |
choco install git gcc-core python38-devel python38-pip --source cygwin
C:\\tools\\cygwin\\bin\\bash -l -x -c 'python3.8 -m pip install tox'
- name: Run tests
run: |
C:\\tools\\cygwin\\bin\\bash -l -x -c 'cd $(cygpath -u "$GITHUB_WORKSPACE") && tox -- --cov-report xml'

release:
needs: test
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
Expand Down