diff options
| author | Inada Naoki <songofacandy@gmail.com> | 2021-11-25 14:43:55 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-25 14:43:55 +0900 |
| commit | bdf0511e29b02427437b03e7d8454bd5076e837f (patch) | |
| tree | 2ec378629c48b23468dc4f5f7f6df46af9d712a0 /ci | |
| parent | 6129789e9f6ebccdb19b23c2cd1dc9551e57fc53 (diff) | |
| download | msgpack-python-bdf0511e29b02427437b03e7d8454bd5076e837f.tar.gz | |
Refactor CI (#492)
* Use cibuildwheel to build wheels.
* Use matrix
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/runtests.bat | 9 | ||||
| -rw-r--r-- | ci/runtests.sh | 8 |
2 files changed, 0 insertions, 17 deletions
diff --git a/ci/runtests.bat b/ci/runtests.bat deleted file mode 100644 index 4ae2f70..0000000 --- a/ci/runtests.bat +++ /dev/null @@ -1,9 +0,0 @@ -%PYTHON%\python.exe -m pip install -U pip wheel pytest
-%PYTHON%\python.exe setup.py build_ext -i
-%PYTHON%\python.exe setup.py install
-%PYTHON%\python.exe -c "import sys; print(hex(sys.maxsize))"
-%PYTHON%\python.exe -c "from msgpack import _cmsgpack"
-%PYTHON%\python.exe setup.py bdist_wheel
-%PYTHON%\python.exe -m pytest -v test
-SET EL=%ERRORLEVEL%
-exit /b %EL%
diff --git a/ci/runtests.sh b/ci/runtests.sh deleted file mode 100644 index 5d87f69..0000000 --- a/ci/runtests.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -set -ex -${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 |
