Skip to content

Commit

Permalink
FIX: Fix syntax for CMake build command.
Browse files Browse the repository at this point in the history
  • Loading branch information
DWesl authored Mar 3, 2024
1 parent af18664 commit bf4eee9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_tests_win_cygwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ jobs:
run: cat ${{ matrix.build_dir }}/CMakeCache.txt

- name: (CMake) Build library and utilities
run: /usr/bin/cmake --build -B ${{ matrix.build_dir }} -j8
run: /usr/bin/cmake --build ${{ matrix.build_dir }} -j8

- name: (CMake) Test DESTDIR install
run: |
DESTDIR=/tmp/pretend-root /usr/bin/cmake --build -B ${{ matrix.build_dir }} --target install
DESTDIR=/tmp/pretend-root /usr/bin/cmake --build ${{ matrix.build_dir }} --target install
if [ -d "/tmp/pretend-root/$(pwd)" ];
then
find /tmp/pretend-root/$(pwd)
Expand Down

0 comments on commit bf4eee9

Please sign in to comment.