We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2006a24 commit 1076f1fCopy full SHA for 1076f1f
.github/workflows/ci.yml
@@ -117,7 +117,7 @@ jobs:
117
echo "LIBZMQ=${PWD}/libzmq-build" >> ${GITHUB_ENV}
118
119
- name: post_build_libzmq_cmake
120
- if: ${{ matrix.libzmqbuild == 'cmake' && matrix.os == 'windows*' }}
+ if: ${{ matrix.libzmqbuild == 'cmake' && startsWith(matrix.os, 'windows') }}
121
run: |
122
mkdir -p build/tests/${BUILDTYPE}
123
cp ${{ env.LIBZMQ }}/bin/${BUILDTYPE}/*.dll build/tests/${BUILDTYPE}
@@ -151,7 +151,7 @@ jobs:
151
152
- name: demo
153
# probably need to install libzmq and cppzmq for this to work on windows
154
- if: ${{ matrix.os == 'ubuntu*' }}
+ if: ${{ matrix.os == 'ubuntu-24.04' }}
155
env:
156
CMAKE_PREFIX_PATH: ${{ env.LIBZMQ }}:${{ env.CPPZMQ }}
157
0 commit comments