reenable lint & native build
This commit is contained in:
parent
5eb83f78a0
commit
8aef785bdc
1 changed files with 11 additions and 11 deletions
22
build.py
22
build.py
|
@ -153,11 +153,11 @@ def upload_clj(project):
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def lint(project):
|
def lint(project):
|
||||||
#run(
|
run(
|
||||||
# "lein eastwood",
|
"lein eastwood",
|
||||||
# shell=True,
|
shell=True,
|
||||||
# check=True,
|
check=True,
|
||||||
#)
|
)
|
||||||
run(
|
run(
|
||||||
"lein ancient check",
|
"lein ancient check",
|
||||||
shell=True,
|
shell=True,
|
||||||
|
@ -167,17 +167,17 @@ def lint(project):
|
||||||
@task
|
@task
|
||||||
def inst(project):
|
def inst(project):
|
||||||
package_uberjar(project)
|
package_uberjar(project)
|
||||||
# package_native(project)
|
package_native(project)
|
||||||
run(
|
run(
|
||||||
f"sudo install -m=755 target/uberjar/{project.name}-standalone.jar /usr/local/bin/{project.name}-standalone.jar",
|
f"sudo install -m=755 target/uberjar/{project.name}-standalone.jar /usr/local/bin/{project.name}-standalone.jar",
|
||||||
shell=True,
|
shell=True,
|
||||||
check=True,
|
check=True,
|
||||||
)
|
)
|
||||||
# run(
|
run(
|
||||||
# f"sudo install -m=755 target/graalvm/{project.name} /usr/local/bin/{project.name}",
|
f"sudo install -m=755 target/graalvm/{project.name} /usr/local/bin/{project.name}",
|
||||||
# shell=True,
|
shell=True,
|
||||||
# check=True,
|
check=True,
|
||||||
# )
|
)
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
|
|
Loading…
Reference in a new issue