-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from Swirrl/tools.build
Migrate from leiningen to tools.build
- Loading branch information
Showing
4 changed files
with
53 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
(ns build | ||
(:require [clojure.tools.build.api :as b] | ||
[org.corfield.build :as bb])) | ||
|
||
(def lib 'grafter/matcha.alpha) | ||
(def version (format "0.2.%s" (b/git-count-revs nil))) | ||
(def jar-file (format "target/%s-%s.jar" (name lib) version)) | ||
|
||
(defn ci | ||
"Run the CI pipeline of tests (and build the JAR)." | ||
[opts] | ||
(-> opts | ||
(assoc :lib lib :version version) | ||
(bb/run-tests) | ||
(bb/clean) | ||
(bb/jar))) | ||
|
||
(defn install | ||
"Install the JAR locally." | ||
[opts] | ||
(-> opts | ||
(assoc :lib lib :version version) | ||
(bb/install))) | ||
|
||
(defn deploy | ||
"Deploy the JAR to Clojars." | ||
[opts] | ||
(-> opts | ||
(assoc :lib lib :version version) | ||
(bb/deploy))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.