mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-05-05 14:08:35 +02:00
Move workflow samples under .github
This commit is contained in:
parent
01def677bf
commit
aabb2db775
55 changed files with 402 additions and 402 deletions
1
.github/workflows/samples/no-wrapper/build.gradle
vendored
Normal file
1
.github/workflows/samples/no-wrapper/build.gradle
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
// Required to keep dependabot happy
|
21
.github/workflows/samples/no-wrapper/settings.gradle
vendored
Normal file
21
.github/workflows/samples/no-wrapper/settings.gradle
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
plugins {
|
||||
id "com.gradle.enterprise" version "3.9"
|
||||
}
|
||||
|
||||
gradleEnterprise {
|
||||
buildScan {
|
||||
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
||||
termsOfServiceAgree = "yes"
|
||||
publishAlways()
|
||||
uploadInBackground = false
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = 'no-wrapper'
|
||||
|
||||
println "Using Gradle version: ${gradle.gradleVersion}"
|
||||
|
||||
def gradleVersionCheck = System.properties.gradleVersionCheck
|
||||
if (gradleVersionCheck && gradle.gradleVersion != gradleVersionCheck) {
|
||||
throw new RuntimeException("Got the wrong version: expected ${gradleVersionCheck} but was ${gradle.gradleVersion}")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue