fix: don't check license validity when building
This commit is contained in:
parent
7d4efd63e1
commit
ef092223f4
3 changed files with 12 additions and 0 deletions
3
.github/workflows/application.yml
vendored
3
.github/workflows/application.yml
vendored
|
@ -37,6 +37,9 @@ jobs:
|
|||
continue-on-error: true
|
||||
with:
|
||||
run: ./gradlew test --tests ui.*
|
||||
|
||||
- name: Check license headers
|
||||
run: ./gradlew checkLicenses
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
needs: test
|
||||
|
|
|
@ -13,3 +13,4 @@ This changelog only contains the changes that are unreleased. For changes for in
|
|||
- Issue with LICENSEHEADER always using the current year causing issues building in a new year
|
||||
|
||||
### Misc
|
||||
- Don't check license validity when building
|
||||
|
|
|
@ -247,6 +247,14 @@ clean.doFirst {
|
|||
delete "${projectDir}/dist"
|
||||
}
|
||||
|
||||
project.afterEvaluate {
|
||||
tasks.check {
|
||||
dependsOn -= tasks.find {
|
||||
it.name.equals("checkLicenses")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
build.finalizedBy copyArtifacts
|
||||
shadowJar.dependsOn jar
|
||||
build.dependsOn createExe, createMacApp
|
||||
|
|
Loading…
Reference in a new issue