fixing osx #118
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: pymathics-natlang (macOS) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
env: | |
LDFLAGS: "-L/usr/local/opt/llvm@11/lib" | |
CPPFLAGS: "-I/usr/local/opt/llvm@11/include" | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
os: [macOS] | |
python-version: ['3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install OS dependencies | |
run: | | |
brew install llvm tesseract enchant mysql | |
python -m pip install --upgrade pip | |
ls /usr/local/Cellar/ | |
LLVM_CONFIG=/usr/local/Cellar/llvm@11/11.1.0/bin/llvm-config pip install llvmlite | |
pip install pytest | |
# Can comment out when next Mathics core and Mathics-scanner are released | |
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full] | |
# Can remove after next Mathics-core release | |
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full] | |
(cd src/mathics3 && bash ./admin-tools/make-op-tables.sh) | |
# python -m pip install Mathics3[full] | |
- name: Install pymathics.natlang | |
run: | | |
make develop | |
- name: Test natlang | |
run: | | |
make check |