CI: download libev via conan, for windows builds to have it #38
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: Build pre release python versions | |
on: [push, pull_request] | |
env: | |
CIBW_TEST_COMMAND_LINUX: "pytest --import-mode append {project}/tests/unit -k 'not (test_connection_initialization or test_cloud)'" | |
CIBW_BEFORE_TEST: "pip install -r {project}/test-requirements.txt" | |
CIBW_BEFORE_BUILD_LINUX: "rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel openssl openssl-devel" | |
CIBW_ENVIRONMENT: "CASS_DRIVER_BUILD_CONCURRENCY=2 CFLAGS='-g0 -O3'" | |
CIBW_PRERELEASE_PYTHONS: True | |
CIBW_SKIP: cp35* cp36* *musllinux* | |
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 | |
jobs: | |
build_wheels: | |
name: Build wheels ${{ matrix.os }} (${{ matrix.platform }}) | |
if: "(!contains(github.event.pull_request.labels.*.name, 'disable-test-build')) || github.event_name == 'push' && endsWith(github.event.ref, 'scylla')" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
platform: x86_64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
- name: Install cibuildwheel | |
run: | | |
python3 -m pip install cibuildwheel==2.19.1 | |
- name: Overwrite for Linux 64 | |
if: runner.os == 'Linux' && matrix.platform == 'x86_64' | |
run: | | |
echo "CIBW_BUILD=cp313*_x86_64" >> $GITHUB_ENV | |
- name: Build wheels | |
run: | | |
python3 -m cibuildwheel --output-dir wheelhouse | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.os }}-${{ matrix.platform }} | |
path: ./wheelhouse/*.whl |