Skip to content

Commit

Permalink
fix: actions (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus8448 committed Oct 9, 2023
1 parent 7e7ff1e commit 7686106
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
key: ${{ runner.os }}-gradle-${{github.ref_name}}-${{ hashFiles('gradle/gradle-wrapper.properties', 'settings.gradle.kts', 'build.gradle.kts', 'gradle.properties') }}

- name: Build
run: ./gradlew build -x checkLicenses -x test --no-daemon
run: ./gradlew build testClasses -x checkLicenses test --no-daemon

- name: Cache build output
uses: actions/cache/save@v3
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
languages: java

- name: Build
run: ./gradlew build -x checkLicenses --no-daemon
run: ./gradlew build testClasses -x checkLicenses test --no-daemon

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
key: ${{ runner.os }}-build-${{ github.sha }}

- name: Publish
run: ./gradlew publish --no-daemon
run: ./gradlew publish -x test --no-daemon
env:
PRE_RELEASE: false
NEXUS_REPOSITORY_URL: ${{ secrets.NEXUS_RELEASE_URL }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
key: ${{ runner.os }}-gradle-PR${{github.event.number}}-${{ hashFiles('gradle.properties', 'gradle/gradle-wrapper.properties') }}

- name: Build
run: ./gradlew build -x checkLicenses --no-daemon
run: ./gradlew build testClasses -x checkLicenses test --no-daemon

- name: Cache build output
uses: actions/cache/save@v3
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
debug: true

- name: Build
run: ./gradlew build -x checkLicenses -x test --no-daemon
run: ./gradlew build testClasses -x checkLicenses test --no-daemon

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ tasks.test {
useJUnitPlatform()
workingDir("run")

doLast {
doFirst {
Files.createDirectories(workingDir.toPath())
}
}
Expand Down

0 comments on commit 7686106

Please sign in to comment.