reenable lint & native build

This commit is contained in:
Michael Jerger 2024-05-31 16:42:51 +02:00
parent 5eb83f78a0
commit 8aef785bdc

View file

@ -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