Skip to content

Commit

Permalink
Try without chmod +x
Browse files Browse the repository at this point in the history
  • Loading branch information
IBA-mainframe-dev committed May 24, 2024
1 parent 2cf9a60 commit 3fe54cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions .github/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,3 @@ runs:
with:
distribution: 'zulu'
java-version: ${{ inputs.jdkVersion }}

- name: Set up Maven Action
uses: s4u/[email protected]
with:
java-version: ${{ inputs.jdkVersion }}
maven-version: ${{ inputs.mavenVersion }}

2 changes: 1 addition & 1 deletion .github/sonar/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
- name: Code coverage and publish results
shell: bash
run: >
mvn sonar:sonar
./mvnw sonar:sonar
-Dorg.gradle.jvmargs="-XX:MaxMetaspaceSize=512m"
-Dresults="build/reports/tests/test,build/test-results/test,build/reports/jacoco/test/html"
-Psonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_TOKEN
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hpi-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Build Jenkins Plugin into .hpi
shell: bash
run: chmod +x mvnw && ./mvnw clean package
run: ./mvnw clean package

- name: Verify content of target folder
shell: bash
Expand Down Expand Up @@ -57,4 +57,4 @@ jobs:

- name: Run Unit Tests with Maven
shell: bash
run: chmod +x mvnw && ./mvnw test
run: ./mvnw test

0 comments on commit 3fe54cc

Please sign in to comment.