Add pre-push git hook

async
Manos Pitsidianakis 2019-12-18 09:18:28 +02:00
parent c23cc45edd
commit 450c9f2b1c
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
2 changed files with 29 additions and 2 deletions

View File

@ -3,7 +3,7 @@
meli: meli:
cargo build $(FEATURES)--release cargo build $(FEATURES)--release
PREFIX=/usr/local PREFIX ?= /usr/local
ifdef MELI_FEATURES ifdef MELI_FEATURES
FEATURES ?= --features="$(MELI_FEATURES)" FEATURES ?= --features="$(MELI_FEATURES)"
@ -13,7 +13,7 @@ endif
.PHONY: clean .PHONY: clean
clean: clean:
rm -ri ./target/ rm -r ./target/
.PHONY: uninstall .PHONY: uninstall
@ -30,3 +30,6 @@ install: meli
cp -f target/release/meli $(DESTDIR)$(PREFIX)/bin cp -f target/release/meli $(DESTDIR)$(PREFIX)/bin
gzip < meli.1 > $(DESTDIR)$(PREFIX)/share/man/man1/meli.1.gz gzip < meli.1 > $(DESTDIR)$(PREFIX)/share/man/man1/meli.1.gz
gzip < meli.conf.5 > $(DESTDIR)$(PREFIX)/share/man/man5/meli.conf.5.gz gzip < meli.conf.5 > $(DESTDIR)$(PREFIX)/share/man/man5/meli.conf.5.gz
@echo "\n You might want to read the \"STARTING WITH meli\" section in the manpage (\`man meli\`)"
@echo " - Report bugs in the mailing list or git issue tracker https://git.meli.delivery"
@echo " - If you have a specific feature or workflow you want to use, you can post in the mailing list or git issue tracker."

24
scripts/pre-push 100755
View File

@ -0,0 +1,24 @@
#!/bin/bash
#
# Copyright 2017-2018 Manos Pitsidianakis
#
# This file is part of meli.
#
# meli is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# meli is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with meli. If not, see <http://www.gnu.org/licenses/>.
set -euxo pipefail
echo "Testing if debug profile builds..."
cargo check --all-features
cargo test --all-features --workspace