Skip to content

Memory leak fixes in the wrapper #409

Memory leak fixes in the wrapper

Memory leak fixes in the wrapper #409

Workflow file for this run

name: Build MKL Mac/Linux
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
build_wheels:
name: Build wheel on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# macos-latest now uses arm64 runners, but MKL is x86_64 only, so restrict to the macos-15-intel runners
# to get x86_64 architecture.
os: [ubuntu-latest, macos-15-intel]
steps:
- uses: actions/checkout@master
- name: Build wheels
uses: pypa/cibuildwheel@v2.23
with:
package-dir: backend/mkl
config-file: backend/mkl/cibuildwheel.toml
output-dir: wheelhouse
- name: Upload artifacts to github
uses: actions/upload-artifact@v5
with:
name: wheels-mkl-${{ matrix.os }}
path: ./wheelhouse