Skip to content

Commit

Permalink
FIX: Fix CMake call syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
DWesl authored Mar 3, 2024
1 parent 94557e5 commit af18664
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 SHELL=/bin/dash
run: /usr/bin/cmake --build -B ${{ matrix.build_dir }} -j8

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

0 comments on commit af18664

Please sign in to comment.