fix ci
This commit is contained in:
parent
fcfcd4b79d
commit
03a9b0aef6
2 changed files with 5 additions and 5 deletions
|
@ -41,7 +41,7 @@ package-jar:
|
||||||
<<: *clj
|
<<: *clj
|
||||||
stage: package
|
stage: package
|
||||||
script:
|
script:
|
||||||
- pyb package_jar
|
- pyb package
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- target/org.domaindrivenarchitecture
|
- target/org.domaindrivenarchitecture
|
||||||
|
@ -51,7 +51,7 @@ release-to-clojars:
|
||||||
<<: *tag_only
|
<<: *tag_only
|
||||||
stage: upload
|
stage: upload
|
||||||
script:
|
script:
|
||||||
- pyb upload_clj
|
- pyb upload
|
||||||
|
|
||||||
dda-backup-image-publish:
|
dda-backup-image-publish:
|
||||||
<<: *img
|
<<: *img
|
||||||
|
|
6
build.py
6
build.py
|
@ -35,17 +35,17 @@ def initialize(project):
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def test_clj(project):
|
def test(project):
|
||||||
run("make test", shell=True, check=True)
|
run("make test", shell=True, check=True)
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def package_jar(project):
|
def package(project):
|
||||||
run("make build-jar", shell=True, check=True)
|
run("make build-jar", shell=True, check=True)
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def upload_clj(project):
|
def upload(project):
|
||||||
run("make deploy", shell=True, check=True)
|
run("make deploy", shell=True, check=True)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue