Skip to content

Commit

Permalink
Updated Makefile and travis setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Jul 17, 2018
1 parent e165b85 commit 54e02ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jdk:
scala:
- 2.12.6

script: make package
script: make travis
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
.PHONY: help # List of targets with descriptions
help:
@grep '^\.PHONY: .* #' Makefile | sed 's/\.PHONY: \(.*\) # \(.*\)/\1\t\2/' | expand -t20

.PHONY: clean # Clean output files (target dir)
clean:
rm -rf target/

.PHONY: package # Build the project and the plugin package
.PHONY: build # Build the project and the plugin package
build:
sbt assembly

.PHONY: travis # Build on travis
travis: build

0 comments on commit 54e02ca

Please sign in to comment.