yaml values with a colon character need to be quoted #4
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
# SPDX-License-Identifier: BSD-3-Clause | |
# Copyright (c) Contributors to the OpenEXR Project. | |
# | |
name: Python wheels | |
on: | |
push: | |
branches-ignore: | |
- RB-2.* | |
tags-ignore: | |
- v1.* | |
- v2.* | |
paths: | |
- '**' | |
- '!**.md' | |
- '!website/**' | |
- 'website/src/**' | |
- '!bazel/**' | |
pull_request: | |
branches-ignore: | |
- RB-2.* | |
tags-ignore: | |
- v1.* | |
- v2.* | |
paths: | |
- '**' | |
- '!**.md' | |
- '!website/**' | |
- 'website/src/**' | |
- '!bazel/**' | |
permissions: | |
contents: read | |
jobs: | |
build_wheels: | |
name: Build Python wheels | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, windows-latest, macOS-latest] | |
env: | |
# For macOS we choose universal builds to support Apple Silicon | |
CIBW_ARCHS_MACOS: universal2 | |
# Skip 32-bit wheels builds. | |
# Also skip the PyPy builds, since they fail the unittests | |
# For macOS, universal builds are only supported on 3.8+ | |
CIBW_SKIP: "*-win32 *_i686 pp* cp36-macosx_* cp37-macosx_*" | |
# The CI platform is Intel based so we are doing cross compilation | |
# for macOS. It is not currently possible to test arm64 when cross | |
# compiling. | |
CIBW_TEST_SKIP: "*-macosx_universal2:arm64" | |
CIBW_BEFORE_BUILD: > | |
echo "Installing OpenEXR..." && | |
cd openexr.build && | |
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../openexr.install -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DCMAKE_PREFIX_PATH=../openexr.install -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_TESTING=OFF -DOPENEXR_INSTALL_EXAMPLES=OFF -DOPENEXR_BUILD_TOOLS=OFF -DBUILD_SHARED_LIBS=OFF -DOPENEXR_FORCE_INTERNAL_DEFLATE=ON -DOPENEXR_FORCE_INTERNAL_IMATH=ON -DCMAKE_POSITION_INDEPENDENT_CODE=ON ../ && | |
cmake --build ./ --config Release --clean-first && | |
cmake --install ./ --config Release && | |
cd .. | |
CIBW_TEST_REQUIRES: pytest | |
CIBW_TEST_COMMAND: pytest {project}/src/wrappers/python/tests/ | |
steps: | |
- uses: actions/checkout@v3 | |
# Used to host cibuildwheel | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.16.2 | |
- name: Create setup.py | |
run: | | |
mv ${{github.workspace}}/src/wrappers/python/setup.py ${{github.workspace}}/setup.py | |
mv ${{github.workspace}}/src/wrappers/python/Imath.py ${{github.workspace}}/Imath.py | |
mv ${{github.workspace}}/src/wrappers/python/OpenEXR.cpp ${{github.workspace}}/OpenEXR.cpp | |
- name: Create folders | |
run: | | |
mkdir -p ${{github.workspace}}/openexr.build | |
mkdir -p ${{github.workspace}}/openexr.install | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: "Python wheels" | |
path: ./wheelhouse/*.whl |