Skip to content

Commit 1076f1f

Browse files
authored
Fix syntax
1 parent 2006a24 commit 1076f1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
echo "LIBZMQ=${PWD}/libzmq-build" >> ${GITHUB_ENV}
118118
119119
- name: post_build_libzmq_cmake
120-
if: ${{ matrix.libzmqbuild == 'cmake' && matrix.os == 'windows*' }}
120+
if: ${{ matrix.libzmqbuild == 'cmake' && startsWith(matrix.os, 'windows') }}
121121
run: |
122122
mkdir -p build/tests/${BUILDTYPE}
123123
cp ${{ env.LIBZMQ }}/bin/${BUILDTYPE}/*.dll build/tests/${BUILDTYPE}
@@ -151,7 +151,7 @@ jobs:
151151
152152
- name: demo
153153
# probably need to install libzmq and cppzmq for this to work on windows
154-
if: ${{ matrix.os == 'ubuntu*' }}
154+
if: ${{ matrix.os == 'ubuntu-24.04' }}
155155
env:
156156
CMAKE_PREFIX_PATH: ${{ env.LIBZMQ }}:${{ env.CPPZMQ }}
157157
run: |

0 commit comments

Comments
 (0)