GH actions are ok now #230
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
push: | |
branches: [ "master", "dev_actions" ] | |
tags: [ '**' ] | |
jobs: | |
build-windows: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
os : [windows-2022] | |
python-version: ["3.11"] | |
steps: | |
# if matrix.force is not true or event is not tag, skip | |
- if: ${{ matrix.force }} != true || (github.event_name == 'push' && !startsWith(github.ref, 'refs/tags')) | |
run: | |
echo "Skipping job for ${{ matrix.os }} ${{ matrix.python-version }}" | |
exit 0 | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install setuptools (needed from Python 3.12) | |
run: pip install setuptools | |
- name: Set up GraalVM Native Image toolchain | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '22' | |
distribution: 'graalvm' | |
- name: Install Swig | |
run: choco install swig | |
- name: Update repository | |
run: | | |
git submodule update --init --recursive | |
- name: Set up Visual Studio shell | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: x64 | |
- name: Build | |
run: | | |
sh build.sh nowheel | |
pip install pychoco -f dist/ | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS: AMD64 | |
with: | |
output-dir: dist | |
- name: Test | |
run: | | |
pip install -U pytest | |
pip install -r requirements_tests.txt | |
pytest | |
- name: Upload wheel artifacts | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheel-${{matrix.os}}-${{matrix.python-version}}-artifact | |
path: dist/ | |
if-no-files-found: error | |
upload-pypi-windows: | |
needs: build-windows | |
runs-on: ubuntu-20.04 | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
strategy: | |
matrix: | |
os : [windows-2022] | |
python-version: ["3.11"] | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheel-${{matrix.os}}-${{matrix.python-version}}-artifact | |
path: dist | |
- name: List files | |
run: ls -R | |
- name: Upload to PyPi | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
verbose: true | |
skip-existing: true |