Skip to content

change windows build #203

change windows build

change windows build #203

Workflow file for this run

name: Deploy
on: push
jobs:
# build_wheels_mac_ubuntu:
# name: Build wheels on ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# # macos-13 is an intel runner
# os: [ubuntu-latest, macos-13]
#
# steps:
# - uses: actions/checkout@v4
#
# - uses: actions/setup-python@v5
#
# - name: Install build tools
# run: python -m pip install --upgrade pip setuptools==75.3.0
#
# - name: Build wheels
# uses: pypa/[email protected]
# env:
# CIBW_SKIP: '*-musllinux_*'
#
# - uses: actions/upload-artifact@v4
# with:
# name: cibw-wheels-${{ matrix.os }}
# path: ./wheelhouse/*.whl
build_wheels-windows:
name: Build wheels on ${{ matrix.os }}
runs-on: windows-latest
env:
CC: cl
CXX: cl
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install build tools
run: python -m pip install --upgrade pip setuptools==75.3.0
- uses: ilammy/msvc-dev-cmd@v1
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: '*-musllinux_*'
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-windows-latest
path: ./wheelhouse/*.whl
# run-tox-test:
# name: Test wheels
# #needs: [build-linux, build-mac]
# needs: [build_wheels_mac_ubuntu]
# runs-on: ${{ matrix.version.os }}
# strategy:
# matrix:
# version:
# - {os: ubuntu-latest, python: '3.10'}
# - {os: macOS-13, python: '3.10'}
# steps:
# - name: Clone repository
# uses: actions/checkout@v4
#
# - uses: actions/download-artifact@master
# with:
# name: cibw-wheels-ubuntu-latest
# path: dist
#
# - uses: actions/download-artifact@master
# with:
# name: cibw-wheels-macos-13
# path: dist
#
# - name: Install Python
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.version.python }}
#
# - name: Install dependencies
# run: |
# pip3 install tox
#
# - name: Run basic test
# run: |
#
# cd misc/
# PIP_FIND_LINKS='${{ github.workspace }}/dist' tox -e unified-planning
#
run-tox-test-windows:
name: Test wheels
needs: [build_wheels_windows]

Check failure on line 102 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 102, Col: 13): Job 'run-tox-test-windows' depends on unknown job 'build_wheels_windows'. .github/workflows/main.yml (Line: 137, Col: 13): Job 'deploy-pypi' depends on unknown job 'run-tox-test'.
#needs: [build-windows]
runs-on: ${{ matrix.version.os }}
strategy:
matrix:
version:
- {os: windows-2019, python: '3.8'}
- {os: windows-2022, python: '3.10'}
steps:
- name: Clone repository
uses: actions/checkout@v4
- uses: actions/download-artifact@master
with:
name: cibw-wheels-windows-latest
path: dist
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version.python }}
- name: Install dependencies
run: |
pip3 install tox
- name: Run basic test
run: |
cd misc/
$env:PIP_FIND_LINKS='${{ github.workspace }}\dist'; tox -e unified-planning
deploy-pypi:
runs-on: ubuntu-latest
needs: [run-tox-test, run-tox-test-windows]
if: github.ref == 'refs/heads/main' # We only deploy on master commits
steps:
- uses: actions/download-artifact@master
with:
name: cibw-wheels-ubuntu-latest
path: dist
- uses: actions/download-artifact@master
with:
name: cibw-wheels-windows-latest
path: dist
- uses: actions/download-artifact@master
with:
name: cibw-wheels-macos-13
path: dist
- run: ls dist
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}