Skip to content

Use local clingo-sys #142

Use local clingo-sys

Use local clingo-sys #142

Workflow file for this run

name: CI tests
on: [push]
jobs:
# linux:
# runs-on: "ubuntu-latest"
# steps:
# - uses: actions/checkout@v2
# - uses: conda-incubator/setup-miniconda@v2
# with:
# auto-update-conda: true
# python-version: ${{ matrix.python-version }}
# - name: Conda install clingo
# shell: bash -l {0}
# run: |
# conda install -c potassco clingo=5.6.2
# - name: Build
# run: |
# export CLINGO_LIBRARY_PATH=/usr/share/miniconda/envs/test/lib
# cargo build --features=derive --verbose
# - name: Run tests
# run: |
# export CLINGO_LIBRARY_PATH=/usr/share/miniconda/envs/test/lib
# export LD_LIBRARY_PATH=/usr/share/miniconda/envs/test/lib
# cargo test --features=derive --verbose
# macos:
# runs-on: "macos-latest"
# steps:
# - uses: actions/checkout@v2
# - uses: conda-incubator/setup-miniconda@v2
# with:
# auto-update-conda: true
# python-version: ${{ matrix.python-version }}
# - name: Conda install clingo
# shell: bash -l {0}
# run: |
# conda install -c potassco clingo=5.6.2
# - name: Build
# run: |
# export CLINGO_LIBRARY_PATH=/usr/local/miniconda/envs/test/lib
# cargo build --features=derive --verbose
# - name: Run tests
# run: |
# export CLINGO_LIBRARY_PATH=/usr/local/miniconda/envs/test/lib
# export DYLD_LIBRARY_PATH=/usr/local/miniconda/envs/test/lib
# cargo test --features=derive --verbose
# windows:
# runs-on: "windows-latest"
# steps:
# - uses: actions/checkout@v2
# - uses: conda-incubator/setup-miniconda@v2
# with:
# auto-update-conda: true
# python-version: ${{ matrix.python-version }}
# - name: Conda install clingo
# run: |
# conda install -c potassco clingo=5.6.2
# - name: Build
# env:
# CLINGO_LIBRARY_PATH: C:\Miniconda\envs\test\Library\lib
# run: |
# cargo build --features=derive --verbose
# - name: Run tests
# env:
# CLINGO_LIBRARY_PATH: C:\Miniconda\envs\test\Library\lib
# LD_LIBRARY_PATH: C:\Miniconda\envs\test\Library\lib;C:\Miniconda\envs\test\Lib
# run: |
# cargo test --features=derive --verbose
linux-static:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Install bison
run: sudo apt-get install bison
- name: Install re2c
run: sudo apt-get install re2c
- name: Checkout clingo-sys branch test-clingo-wip
run: |
git clone https://github.com/potassco/clingo-sys.git ./clingo-sys
cd clingo-sys
git checkout st/test-clingo-wip
git submodule update --init --recursive
cd clingo
git checkout wip
- name: Build
run: cargo build --features=static-linking,derive --verbose
- name: Run tests
run: cargo test --features=static-linking,derive --verbose
macos-static:
runs-on: "macos-latest"
steps:
- uses: actions/checkout@v2
- name: Install build dependencies
run: |
brew update
brew install bison@2.7
brew install re2c
- name: Checkout clingo-sys branch test-clingo-wip
run: |
git clone https://github.com/potassco/clingo-sys.git ./clingo-sys
cd clingo-sys
git checkout st/test-clingo-wip
git submodule update --init --recursive
cd clingo
git checkout wip
- name: Build
run: |
export PATH="/usr/local/opt/bison@2.7/bin:$PATH"
cargo build --features=static-linking,derive --verbose
- name: Run tests
run: |
export PATH="/usr/local/opt/bison@2.7/bin:$PATH"
cargo test --features=static-linking,derive --verbose
windows-static:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v2
- name: Install bison
run: choco install winflexbison
- name: Install re2c
run: choco install re2c
- name: Checkout clingo-sys branch test-clingo-wip
run: |
git clone https://github.com/potassco/clingo-sys.git ./clingo-sys
cd clingo-sys
git checkout st/test-clingo-wip
git submodule update --init --recursive
cd clingo
git checkout wip
- name: Build
run: cargo build --features static-linking,derive -vv
- name: Run tests
run: cargo test --features static-linking,derive --verbose