Update conda reference in docs #42
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: Test PyMEOS | |
on: | |
push: | |
branches: [ "develop", "master" ] | |
pull_request: | |
branches: [ "develop", "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: build-essential cmake postgresql-server-dev-14 libproj-dev libjson-c-dev libgsl-dev libgeos-dev | |
version: 1.0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install MEOS | |
env: | |
BRANCH_NAME: ${{ github.base_ref || github.ref_name }} | |
run: | | |
git clone --branch ${{ env.BRANCH_NAME }} --depth 1 https://github.com/MobilityDB/MobilityDB | |
mkdir MobilityDB/build | |
cd MobilityDB/build | |
cmake .. -DMEOS=on | |
make -j | |
sudo make install | |
- name: Install python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r pymeos_cffi/dev-requirements.txt | |
pip install -r pymeos/dev-requirements.txt | |
- name: Install pymeos_cffi | |
run: | | |
cd pymeos_cffi | |
python ./pymeos_cffi/builder/build_header.py | |
python ./pymeos_cffi/builder/build_pymeos_functions.py | |
pip install . | |
cd .. | |
- name: Test PyMEOS with pytest | |
run: | | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib | |
cd pymeos | |
pytest |