Skip to content

Commit

Permalink
chore: bump gradle develocity [email protected] (#1017)
Browse files Browse the repository at this point in the history
- Allow scan publish on Ci environment

Signed-off-by: Hiroshi Miura <[email protected]>
  • Loading branch information
miurahr authored May 3, 2024
1 parent 0e45507 commit dfc7802
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/gradle-build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ jobs:
- name: Agree gradle-scan terms
run: cat ci/gradle/gradle-scan.init.gradle >> settings.gradle
- uses: gradle/actions/setup-gradle@v3
with:
build-scan-publish: true
build-scan-terms-of-service-url: https://gradle.com/terms-of-service
build-scan-terms-of-service-agree: yes
name: Setup Gradle
id: setup-gradle
- name: Run gradle build
Expand Down
9 changes: 8 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
id 'com.gradle.enterprise' version '3.16.2'
id 'com.gradle.develocity' version '3.17.2'
}
develocity {
buildScan {
publishing.onlyIf { "true".equals(System.getProperty("envIsCi")) }
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
}
rootProject.name = 'OmegaT'
include("machinetranslators:apertium",
Expand Down

0 comments on commit dfc7802

Please sign in to comment.