mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
.travis.yml: add test for make uninstall
This commit is contained in:
parent
00d44599c4
commit
87924e3d4b
1 changed files with 5 additions and 1 deletions
|
@ -55,7 +55,11 @@ matrix:
|
||||||
script:
|
script:
|
||||||
- autoreconf
|
- autoreconf
|
||||||
- ./configure --prefix=$HOME/prefix || cat config.log
|
- ./configure --prefix=$HOME/prefix || cat config.log
|
||||||
- make -j2 && make test DESTDIR=$HOME/prefix/ SHOW_INTERACTIVE_LOG=1
|
- make -j2 &&
|
||||||
|
make test DESTDIR=$HOME/prefix/ SHOW_INTERACTIVE_LOG=1 &&
|
||||||
|
make uninstall &&
|
||||||
|
echo "Checking for leftover files after make uninstall" &&
|
||||||
|
find $HOME/prefix/ -type f -print -exec false '{}' +
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
# Some items are encrypted so that notifications from other repositories
|
# Some items are encrypted so that notifications from other repositories
|
||||||
|
|
Loading…
Reference in a new issue