Skip to content

Commit

Permalink
github/ci: setting cmake options in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaeddert committed Dec 21, 2024
1 parent 51b597e commit 267cfc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
if: runner.os == 'macos'
run: |
brew update
brew install autoconf automake pybind11 virtualenv
brew install cmake pybind11 virtualenv
- name: Setup environment (Linux)
if: runner.os == 'Linux'
Expand All @@ -39,7 +39,7 @@ jobs:
python -m pip install pybind11 numpy matplotlib
mkdir build
cd build
cmake ..
cmake -DBUILD_AUTOTESTS=ON -DBUILD_BENCHMARKS=ON -DBUILD_EXAMPLES=ON -DPYTHON=ON ..
make
./xautotest -v -o autotest.json
python3 -c "import liquid as dsp; print('liquid-dsp python version:',dsp.__version__)"
Expand Down

0 comments on commit 267cfc9

Please sign in to comment.