-
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.
- Loading branch information
1 parent
e48f3ae
commit 23451ef
Showing
3 changed files
with
36 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
(ns build | ||
(:refer-clojure :exclude [test]) | ||
(:require [clojure.tools.build.api :as b] ; for b/git-count-revs | ||
[org.corfield.build :as bb])) | ||
|
||
(def lib 'org.clojars.roklenarcic/cljc-shuffle) | ||
(def version "1.0.1") | ||
|
||
(defn test "Run the tests." [opts] | ||
(bb/run-tests opts)) | ||
|
||
(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 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