8000 Use Github Actions for Windows by methane · Pull Request #377 · msgpack/msgpack-python · GitHub
[go: up one dir, main page]

Skip to content

Use Github Actions for Windows #377

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

Merged
merged 3 commits into from
Dec 3, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
more Pythons
  • Loading branch information
methane committed Dec 3, 2019
commit 9ecc960f36e9f8c8f055725ebe0d6bf8142d68f2
54 changes: 38 additions & 16 deletions .github/workflows/windows.yaml
Original file line number Diff line number 8000 Diff line change
Expand Up @@ -14,32 +14,54 @@ jobs:
- name: Checkout
uses: actions/checkout@v1

- name: Install Dependencies
- name: Cythonize
shell: bash
run: |
pip install -U Cython setuptools wheel pytest
pip install -U Cython
make cython
#python setup.py sdist

- name: Python 3.6 (amd64)
env:
PYTHON: "py -3.6-64"
shell: bash
run: |
py -3.6-64 -VV
py -3.6-64 -m pip install setuptools wheel pytest
py -3.6-64 setup.py build_ext -if
py -3.6-64 -c "from msgpack import _cmsgpack"
py -3.6-64 setup.py bdist_wheel
py -3.6-64 -m pytest -v test
run: &testscript |
${PYTHON} -VV
${PYTHON} -m pip install setuptools wheel pytest
${PYTHON} setup.py build_ext -if
${PYTHON} -c "from msgpack import _cmsgpack"
${PYTHON} setup.py bdist_wheel
${PYTHON} -m pytest -v test

- name: Python 3.6 (x86)
env:
PYTHON: "py -3.6-32"
shell: bash
run: |
py -3.6-32 -VV
py -3.6-32 -m pip install setuptools wheel pytest
py -3.6-32 setup.py build_ext -if
py -3.6-32 -c "from msgpack import _cmsgpack"
py -3.6-32 setup.py bdist_wheel
py -3.6-32 -m pytest -v test
run: *testscript

- name: Python 3.7 (amd64)
env:
PYTHON: "py -3.7-64"
shell: bash
run: *testscript

- name: Python 3.7 (x86)
env:
PYTHON: "py -3.7-32"
shell: bash
run: *testscript

- name: Python 3.8 (amd64)
env:
PYTHON: "py -3.8-64"
shell: bash
run: *testscript

- name: Python 3.8 (x86)
env:
PYTHON: "py -3.8-32"
shell: bash
run: *testscript

- name: Upload Wheels
uses: actions/upload-artifact@v1
Expand Down
0