Hi,
i am trying to build with java gradle, with the default pipelines build script.
I have two repositories, same deafult pipelines build script. One is working nicely, other gets an error:
+ ./gradlew build bash: ./gradlew: Permission denied
How can i debug my issue? Or what could be the cause?
Community moderators have prevented the ability to post new answers.
You are building under linux, so you should give the necessary execute rights for the file to the system. Use "- chmod a+x gradlew" before calling the build command.
@Galya Bogdanova, Here is my script to create EAR of my project :-
# This is a sample build configuration for Gradle. # Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. image: qlik/gradle pipelines: default: - step: script: - ls - gradle clean - gradle test - gradle ear
but when i run my script, build fails on command "gradle clean" by saying.. gradle clean/tmp/bashScript8951005165638245468.sh: line 22: gradle: command not found
will you please help ? Whats wrong here.
previously (1 week before) same code was working perfect. but now what happened ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.