Compare commits
No commits in common. "eb227db9c68b0cf276dab784bc796a481461c4c6" and "45d4991ae2e8bbe9519458b2fa005864f99e1e75" have entirely different histories.
eb227db9c6
...
45d4991ae2
1 changed files with 19 additions and 10 deletions
23
README.md
23
README.md
|
@ -47,21 +47,30 @@ Build taske looks like this:
|
||||||
orchestra/orchestra {:mvn/version "2021.01.01-1"}
|
orchestra/orchestra {:mvn/version "2021.01.01-1"}
|
||||||
org.domaindrivenarchitecture/build {:mvn/version "0.1.1-SNAPSHOT"}}
|
org.domaindrivenarchitecture/build {:mvn/version "0.1.1-SNAPSHOT"}}
|
||||||
:tasks
|
:tasks
|
||||||
{:init (do (def project {:name "test"
|
{plan
|
||||||
|
{:requires ([dda.build.terragrunt :as tg])
|
||||||
|
:task (tg/plan! {:name "test"
|
||||||
:module (first *command-line-args*)
|
:module (first *command-line-args*)
|
||||||
:project-root-path "../../.."
|
:project-root-path "../../.."
|
||||||
:build-dir-name "target"
|
:build-dir-name "target"
|
||||||
:version "4.11.8-dev"
|
:version "4.11.8-dev"
|
||||||
:debug true}))
|
:debug true})}
|
||||||
plan
|
|
||||||
{:requires ([dda.build.terragrunt :as tg])
|
|
||||||
:task (tg/plan! project)}
|
|
||||||
apply
|
apply
|
||||||
{:requires ([dda.build.terragrunt :as tg])
|
{:requires ([dda.build.terragrunt :as tg])
|
||||||
:task (tg/apply! project)}
|
:task (tg/apply! {:name "test"
|
||||||
|
:module (first *command-line-args*)
|
||||||
|
:project-root-path "../../.."
|
||||||
|
:build-dir-name "target"
|
||||||
|
:version "4.11.8-dev"
|
||||||
|
:debug true})}
|
||||||
destroy
|
destroy
|
||||||
{:requires ([dda.build.terragrunt :as tg])
|
{:requires ([dda.build.terragrunt :as tg])
|
||||||
:task (tg/destroy! project)}}}
|
:task (tg/destroy! {:name "test"
|
||||||
|
:module (first *command-line-args*)
|
||||||
|
:project-root-path "../../.."
|
||||||
|
:build-dir-name "target"
|
||||||
|
:version "4.11.8-dev"
|
||||||
|
:debug true})}}}
|
||||||
```
|
```
|
||||||
|
|
||||||
Execute the build
|
Execute the build
|
||||||
|
|
Loading…
Reference in a new issue