Skip to content

Commit

Permalink
CI, TST: Check that test plugins don't get installed with DESTDIR
Browse files Browse the repository at this point in the history
This caused problems for packagers (Unidata#2431)
  • Loading branch information
DWesl committed Jun 30, 2022
1 parent 97a1ff6 commit 1e18409
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/run_tests_win_cygwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,9 @@ jobs:

- name: (Autotools) Build and run tests
run: make check -j8 SHELL=/bin/dash

- name: (Autotools) Test DESTDIR install
run: |
make install DESTDIR=/tmp/pretend-root SHELL=/bin/dash
ls /tmp/pretend-root/$(pwd)
if [ $(ls /tmp/pretend-root/$(pwd) | wc -l) -gt 0 ]; then exit 1; fi

0 comments on commit 1e18409

Please sign in to comment.