Skip to content

Commit cda0110

Browse files
committed
ci: executables are in build dir
1 parent 298e6f0 commit cda0110

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-linux-osx-win-conda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,23 +190,23 @@ jobs:
190190
git tag $PROXSUITE_GIT_TAG
191191
cmake -B build/test-packaging-external -S test/packaging/external -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
192192
cmake --build build/test-packaging-external --config ${{ matrix.build_type }}
193-
./build/test-packaging-external/bin/run-proxqp
193+
./build/test-packaging-external/run-proxqp
194194
195195
- name: Test CMake packaging [Conda/Linux&macOS]
196196
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
197197
shell: bash -l {0}
198198
run: |
199199
cmake -B build/test-packaging-cmake -S test/packaging/cmake -DCMAKE_INSTALL_PREFIX=${CONDA_PREFIX} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DPACKAGE_PREFIX_DIR=${CONDA_PREFIX}
200200
cmake --build build/test-packaging-cmake --config ${{ matrix.build_type }}
201-
./build/test-packaging-cmake/bin/run-proxqp
201+
./build/test-packaging-cmake/run-proxqp
202202
203203
- name: Test CMake packaging with components [Conda/Linux&macOS]
204204
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
205205
shell: bash -l {0}
206206
run: |
207207
cmake -B build/test-packaging-cmake-components -S test/packaging/cmake-components -DCMAKE_INSTALL_PREFIX=${CONDA_PREFIX} -DBUILD_WITH_VECTORIZATION_SUPPORT=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DPACKAGE_PREFIX_DIR=${CONDA_PREFIX}
208208
cmake --build build/test-packaging-cmake-components --config ${{ matrix.build_type }}
209-
./build/test-packaging-cmake-components/bin/run-proxqp
209+
./build/test-packaging-cmake-components/run-proxqp
210210
211211
- name: Uninstall [Conda]
212212
shell: bash -l {0}

0 commit comments

Comments
 (0)