We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3696f50 commit 05d8f13Copy full SHA for 05d8f13
.github/workflows/ci.yml
@@ -144,15 +144,11 @@ jobs:
144
ctest -V -C ${BUILDTYPE}
145
146
- name: demo
147
+ # probably need to install libzmq and cppzmq for this to work on windows
148
+ if: ${{ matrix.os == 'ubuntu*' }}
149
env:
150
CMAKE_PREFIX_PATH: ${{ env.LIBZMQ }}:${{ env.CPPZMQ }}
151
run: |
- if [[ ${{ matrix.os }} == windows* ]]; then
- DELIM=";"
152
- else
153
- DELIM=":"
154
- fi
155
- export CMAKE_PREFIX_PATH=${{ env.LIBZMQ }}${DELIM}${{ env.CPPZMQ }}
156
cd demo
157
cmake -H. -Bbuild ${{ matrix.platform}} \
158
-DCMAKE_BUILD_TYPE=${BUILDTYPE} \
0 commit comments