Skip to content

Ant Ray PyPi Nightly #37

Ant Ray PyPi Nightly

Ant Ray PyPi Nightly #37

Workflow file for this run

name: Ant Ray PyPi Nightly
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
release:
types:
- published
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
# os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, macos-13]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BEFORE_BUILD: pip install "cython>=0.29.32" wheel && ./ci/env/install-bazel.sh
CIBW_BUILD: |
cp39-macosx_x86_64
cp39-manylinux_aarch64
cp39-musllinux_x86_64
CIBW_ENVIRONMENT: RAY_DEBUG_BUILD=nightly SKIP_THIRDPARTY_INSTALL=1
with:
package-dir: ./python
output-dir: ./python/dist
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./python/dist/*.whl