From ba85a8b714460fcfadd15bc0d5db46a783439b8d Mon Sep 17 00:00:00 2001 From: Toporin Date: Mon, 26 Jun 2023 12:46:12 +0200 Subject: [PATCH] Add github actions with windows x86 and x64 architectures --- .github/workflows/windows_all.yml | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/windows_all.yml diff --git a/.github/workflows/windows_all.yml b/.github/workflows/windows_all.yml new file mode 100644 index 00000000..3b689107 --- /dev/null +++ b/.github/workflows/windows_all.yml @@ -0,0 +1,46 @@ +name: Windows Build + +on: [push, pull_request] + +jobs: + build: + + runs-on: windows-latest + + strategy: + matrix: + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + windows-arch: ['x86', 'x64'] + + steps: + - uses: actions/checkout@v3 + + - name: Set up Python ${{ matrix.python-version }} ${{ matrix.windows-arch }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + architecture: ${{ matrix.windows-arch }} + + - name: Install build tools + run: | + python --version + python -c "import struct; print(struct.calcsize('P') * 8)" + python -m pip install --upgrade pip + pip install -r dev-requirements.txt + + choco install swig --version 2.0.12 --allow-empty-checksums --yes --limit-output + swig -version + + - name: Build + run: | + python setup.py sdist + python setup.py bdist + python setup.py bdist_wheel + python setup.py install + + - name: Tests + run: python setup.py test + + - uses: actions/upload-artifact@v3 + with: + path: dist