Fix local execution of gradle tasks and line ending issues

This commit is contained in:
Christian Beikov 2024-11-13 16:43:34 +01:00
parent 0ca27a4e32
commit 9c96e84a58
2 changed files with 9 additions and 11 deletions

4
.gitattributes vendored
View File

@ -1,8 +1,8 @@
# By default, detect text files automatically, and use whatever line terminators make sense for the OS # By default, detect text files automatically, and use whatever line terminators make sense for the OS
* text=auto * text=auto eol=lf
# Java files are text, and we want Java-friendly readable hunk headers for diff # Java files are text, and we want Java-friendly readable hunk headers for diff
*.java text diff=java *.java text diff=java eol=lf
# Force LF/CRLF format for files that are known to require it. # Force LF/CRLF format for files that are known to require it.
*.sh text eol=lf *.sh text eol=lf

View File

@ -519,16 +519,14 @@ tasks.register( "ciCheck" ) {
group "verification" group "verification"
description "Checks for CI environments" description "Checks for CI environments"
dependsOn tasks.check dependsOn tasks.check
}
// These are already enforced by the formatChecks task gradle.taskGraph.whenReady {
spotlessApply { if ( it.hasTask( tasks.ciCheck ) ) {
enabled = false // These are already enforced by the formatChecks task
} tasks.spotlessApply.enabled = false
spotlessJavaApply { tasks.spotlessJavaApply.enabled = false
enabled = false tasks.enforceRules.enabled = false
}
enforceRules {
enabled = false
} }
} }