fix(deps): version #146
Workflow file for this run
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: 🐍 Bindings | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test-bindings: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
container: ghcr.io/viennatools/vienna-builder:suite-python | |
- os: windows-latest | |
- os: macos-latest | |
runs-on: ${{ matrix.os }} | |
container: ${{ matrix.container }} | |
name: "🐍 Test Bindings on ${{ matrix.os }}" | |
steps: | |
- name: 📥 Checkout | |
uses: actions/checkout@v4 | |
- name: 🖥️ Setup Environment | |
uses: ./.github/actions/setup | |
with: | |
os: ${{ matrix.os }} | |
- name: 🦥 Cache Dependencies | |
uses: actions/cache@v4 | |
with: | |
key: python-${{ matrix.os }} | |
path: build | |
- name: 🐍 Build and check Python Module (Windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
python -m venv venv | |
./venv/Scripts/activate.bat | |
pip install . | |
python -c "import viennals2d; print(viennals2d.__doc__)" | |
- name: 🐍 Build and check Python Module (Other) | |
if: ${{ matrix.os != 'windows-latest' }} | |
run: | | |
python -m venv venv | |
CMAKE_ARGS=-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF ./venv/bin/pip install . # Alpine does not like LTO | |
./venv/bin/python -c "import viennals2d; print(viennals2d.__doc__)" | |
- name: 📦 Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Pre-Built (${{ matrix.os }}) | |
path: venv | |
package: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
container: ghcr.io/viennatools/vienna-builder:python | |
- os: windows-latest | |
- os: macos-latest | |
runs-on: ${{ matrix.os }} | |
container: ${{ matrix.container }} | |
name: "🐍 Package Bindings on ${{ matrix.os }}" | |
steps: | |
- name: 📥 Checkout | |
uses: actions/checkout@v4 | |
- name: 🖥️ Setup Environment | |
uses: ./.github/actions/setup | |
with: | |
os: ${{ matrix.os }} | |
- name: 🛞 CIBuildWheel | |
run: pip install cibuildwheel==2.17.0 --break-system-packages | |
- name: 🛠️ Build VTK (Windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
sed -i 's/\(DVIENNALS_BUILD_PYTHON=ON"\)/\1,"-DVIENNALS_PACKAGE_PYTHON=ON","-DVIENNALS_IS_CI=ON"/g' pyproject.toml | |
type pyproject.toml | |
- name: 🛠️ Build VTK (MacOs) | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
sed -i .bak 's/\(DVIENNALS_BUILD_PYTHON=ON"\)/\1,"-DVIENNALS_PACKAGE_PYTHON=ON","-DVIENNALS_IS_CI=ON"/g' pyproject.toml | |
cat pyproject.toml | |
- name: 🛠️ Use VTK-Python Libs | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
sed -i 's/\(DVIENNALS_BUILD_PYTHON=ON"\)/\1,"-DVIENNALS_PACKAGE_PYTHON=ON","-DVIENNALS_IS_CI=ON"/g' pyproject.toml | |
cat pyproject.toml | |
- name: 🏗️ Build Wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-*" | |
CIBW_ARCHS_WINDOWS: auto64 | |
- name: 📦 Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Wheels (${{ matrix.os }}) | |
path: ./wheelhouse/*.whl |