fix install fastcore installation path #27
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: CI | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build_wheels: | |
name: Build wheel for cp${{ matrix.python }}-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# Ensure that a wheel builder finishes even if another fails | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python: [36, 37, 38, 39] | |
bitness: [32, 64] | |
include: | |
- os: ubuntu-latest | |
bitness: 64 | |
platform_id: manylinux_x86_64 | |
- os: ubuntu-latest | |
bitness: 32 | |
platform_id: manylinux_i686 | |
- os: macos-latest | |
bitness: 64 | |
platform_id: macosx_x86_64 | |
exclude: | |
- os: macos-latest | |
bitness: 32 | |
steps: | |
- name: Checkout CPT | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
- name: Build and test wheels | |
env: | |
CIBW_BEFORE_BUILD: "python -m pip install cython>=0.20" | |
CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }} | |
CIBW_BEFORE_TEST: "CC=gcc CXX=g++" | |
CIBW_BUILD_VERBOSITY: 1 | |
run: bash build_tools/build_wheels.sh |