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
|
||||
stage: package
|
||||
script:
|
||||
- pyb package_jar
|
||||
- pyb package
|
||||
artifacts:
|
||||
paths:
|
||||
- target/org.domaindrivenarchitecture
|
||||
|
@ -51,7 +51,7 @@ release-to-clojars:
|
|||
<<: *tag_only
|
||||
stage: upload
|
||||
script:
|
||||
- pyb upload_clj
|
||||
- pyb upload
|
||||
|
||||
dda-backup-image-publish:
|
||||
<<: *img
|
||||
|
|
6
build.py
6
build.py
|
@ -35,17 +35,17 @@ def initialize(project):
|
|||
|
||||
|
||||
@task
|
||||
def test_clj(project):
|
||||
def test(project):
|
||||
run("make test", shell=True, check=True)
|
||||
|
||||
|
||||
@task
|
||||
def package_jar(project):
|
||||
def package(project):
|
||||
run("make build-jar", shell=True, check=True)
|
||||
|
||||
|
||||
@task
|
||||
def upload_clj(project):
|
||||
def upload(project):
|
||||
run("make deploy", shell=True, check=True)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue