diff --git a/.github/workflows/build-and-run-tests.yml b/.github/workflows/build-and-run-tests.yml index 6659bc6f64..1c1eae220d 100644 --- a/.github/workflows/build-and-run-tests.yml +++ b/.github/workflows/build-and-run-tests.yml @@ -70,7 +70,7 @@ jobs: - name: Build and run tests run: | - ./gradlew build --no-daemon --scan -PcpythonActivated=true + ./gradlew build --no-daemon -PcpythonActivated=true - name: Run Detekt run: | diff --git a/settings.gradle.kts b/settings.gradle.kts index 9eb84044d8..7e98903912 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -36,18 +36,3 @@ pluginManagement { } } } - -plugins { - id("com.gradle.develocity") version ("3.19") -} - -develocity { - buildScan { - // Accept the term of use for the build scan plugin: - termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use") - termsOfUseAgree.set("yes") - - // Publish build scans on-demand, when `--scan` option is provided: - publishing.onlyIf { false } - } -}