Skip to content

Commit

Permalink
Passing paths to cmake to fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
khansamad47 committed Dec 31, 2023
1 parent e19223c commit 1deb0e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
cmake -DDOWNLOAD_ROC=OFF .. && make -j
test -e ../bin/rt-tests
ubuntu-roc-custom-path:
ubuntu-roc-custom-path-roc:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -62,7 +62,9 @@ jobs:
- name: Build tests
run: |
mkdir build && cd build
cmake -DDOWNLOAD_ROC=OFF .. && make -j
cmake -DDOWNLOAD_ROC=OFF \
-DROC_INCLUDE_DIR=/tmp/roc/output/include
-DROC_LIB_DIR=/tmp/roc/output/lib .. && make -j
test -e ../bin/rt-tests
ubuntu-download-roc:
Expand Down

0 comments on commit 1deb0e4

Please sign in to comment.