Skip to content

Makefile: remove MACOS specific logic #36

Makefile: remove MACOS specific logic

Makefile: remove MACOS specific logic #36

Workflow file for this run

name: CLIPSPy build job
on: [push, pull_request]
jobs:
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ['3.8', '3.9', '3.10', '3.11']
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install --upgrade cffi pytest
# - name: Build CLIPSPy
# run: |
# make
# - name: Run tests
# run: |
# make test
# build-linux:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build Manylinux Container
# run: |
# docker build -t clipspy-build-wheels:latest -f manylinux/Dockerfile .
# - name: Build Manylinux packages
# run: |
# docker run --rm -v `pwd`/manylinux/wheelhouse:/io/wheelhouse clipspy-build-wheels:latest
# - name: Store build artifacts
# uses: actions/upload-artifact@v3
# with:
# name: manylinux-build
# path: manylinux/wheelhouse
# build-windows:
# runs-on: windows-latest
# strategy:
# matrix:
# python-version: ['3.8', '3.9', '3.10', '3.11']
# steps:
# - uses: actions/checkout@v2
# # Install nmake
# - uses: ilammy/msvc-dev-cmd@v1
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Build CLIPSPy
# run: |
# python -m pip install --upgrade pip
# pip install --upgrade cffi wheel
# nmake /F Makefile.win
# - name: Store build artifacts
# uses: actions/upload-artifact@v3
# with:
# name: windows-build
# path: dist/
build-macos:
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade cffi wheel delocate
- name: Build and install CLIPSPy
run: |
make install-clips
- name: Repair wheels
run: |
for whl in dist/*.whl; do
delocate-wheel -v "$whl"
done
- name: Store build artifacts
uses: actions/upload-artifact@v3
with:
name: macos-build
path: dist/