-
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
Showing
6 changed files
with
42 additions
and
28 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 |
---|---|---|
@@ -1,17 +1,20 @@ | ||
;; The file is updated automatically | ||
{:deps {org.clojars.hephaistox/automaton-build #:mvn{:version "3.0.1"}} | ||
{:deps {org.clojars.hephaistox/automaton-build #:mvn{:version "3.1.0"}} | ||
:paths [] | ||
:tasks | ||
{:requires [[automaton-build.tasks.launcher.bb-entrypoint :as build-task-bb-entrypoint] | ||
[babashka.process :as babahska-process]] | ||
heph-task {:doc "Launch an Hephaistox task" | ||
:task (System/exit (build-task-bb-entrypoint/-main *command-line-args*))} | ||
{-base-deps {:doc "Dependencies for a task using bb" | ||
:extra-deps {org.clojure/tools.cli {:mvn/version "1.1.230"}}} | ||
:requires [[automaton-build.tasks.common :as tasks-common]] | ||
lconnect | ||
{:doc | ||
"Repl in case automaton-web is failing. Using -f or --force cli arguments to force start if some part are failing" | ||
"Repl in case automaton-build is failing. Using -f or --force cli arguments to force start if some part are failing" | ||
:task (try (-> (babahska-process/shell "clojure" | ||
"-M:common-test:env-development-repl:build" | ||
*command-line-args*) | ||
System/exit) | ||
(catch Exception e | ||
(println "Repl failed also - error during repl startup" (ex-message e))))}}} | ||
(println "Repl failed also - error during repl startup" (ex-message e))))} | ||
wf-4 {:depends [-base-deps] | ||
:doc "Full test and formatting." | ||
:enter (tasks-common/enter wf-4/cli-opts (current-task)) | ||
:requires [[automaton-build.tasks.4 :as wf-4]] | ||
:task (System/exit (wf-4/run [:common-test :env-development-test]))}}} |
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
;; Last generated version, note a failed push consume a number | ||
{:version "2.0.0"} | ||
{:version "2.1.0"} |