From 98e0f009214639caef8677230aceb2ad015e6571 Mon Sep 17 00:00:00 2001 From: Gasper Kojek Date: Wed, 11 Mar 2026 14:56:35 +0100 Subject: [PATCH 1/2] Remove Develocity configuration Signed-off-by: Gasper Kojek --- .github/workflows/build-pr-check.yml | 2 -- .github/workflows/next-build.yml | 2 -- .gitignore | 3 -- .mvn/develocity.xml | 42 ---------------------------- .mvn/extensions.xml | 26 ----------------- README.md | 14 ---------- pom.xml | 19 ------------- 7 files changed, 108 deletions(-) delete mode 100644 .mvn/develocity.xml delete mode 100644 .mvn/extensions.xml diff --git a/.github/workflows/build-pr-check.yml b/.github/workflows/build-pr-check.yml index f6991397f3d..54d0bbfcdfa 100644 --- a/.github/workflows/build-pr-check.yml +++ b/.github/workflows/build-pr-check.yml @@ -45,8 +45,6 @@ jobs: registry: quay.io - name: Build with Maven run: mvn -B clean install -U -Pintegration - env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_API_TOKEN }} - name: Build and push images if: ${{ github.event_name == 'pull_request' && ! github.event.pull_request.head.repo.fork }} run: ./build/build.sh --tag:${{ env.PR_IMAGE_TAG }} --build-platforms:linux/amd64,linux/ppc64le,linux/arm64,linux/s390x --builder:podman --push-image diff --git a/.github/workflows/next-build.yml b/.github/workflows/next-build.yml index 738044c7eab..281279329d5 100644 --- a/.github/workflows/next-build.yml +++ b/.github/workflows/next-build.yml @@ -44,8 +44,6 @@ jobs: registry: quay.io - name: Build with Maven run: mvn -B clean install -U -Pintegration - env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_API_TOKEN }} - name: Build and push images id: build run: | diff --git a/.gitignore b/.gitignore index 05352277cf8..be3582e4991 100644 --- a/.gitignore +++ b/.gitignore @@ -99,8 +99,5 @@ tests/e2e/load-test-folder */.lock-wscript */cypress-tests/dist -# Develocity -.mvn/.develocity/develocity-workspace-id - # typescript-dto /typescript-dto/.pnp.cjs diff --git a/.mvn/develocity.xml b/.mvn/develocity.xml deleted file mode 100644 index 2896eb56fa3..00000000000 --- a/.mvn/develocity.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - https://develocity-staging.eclipse.org - - ecd.che - - - 0.0.0.0 - - - - - - - #{isFalse(env['CI'])} - - - - #{isFalse(env['CI'])} - - - true - #{isTrue(env['CI'])} - - - diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml deleted file mode 100644 index ce90642137b..00000000000 --- a/.mvn/extensions.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - com.gradle - develocity-maven-extension - 2.3.2 - - - com.gradle - common-custom-user-data-maven-extension - 2.1.0 - - diff --git a/README.md b/README.md index 66ed2aaf498..c3c38ff017c 100644 --- a/README.md +++ b/README.md @@ -39,20 +39,6 @@ See the Eclipse Che Documentation about [how you can join our community](https:/ * [![release latest stable](https://github.com/eclipse-che/che-server/actions/workflows/release.yml/badge.svg)](https://github.com/eclipse-che/che-server/actions/workflows/release.yml) -### Develocity - -[![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://develocity-staging.eclipse.org/) - -The `che-server` builds are revved up by [Develocity](https://develocity-staging.eclipse.org/scans), which enhances developer productivity through features such as Build Scan for build insights and collaborative troubleshooting, and remote Build Cache for build acceleration. Develocity also provides comprehensive reporting and visualization of build data. - -To view the Build Scan produced by a build, click on the generated link at the end of the build. Build Scans are available locally and on GitHub Action CI (limited to users authenticated to publish local scans). You can access all scans published by the `che-server` builds on the [Eclipse Develocity dashboard](https://develocity-staging.eclipse.org) by [searching](https://develocity-staging.eclipse.org/scans?search.rootProjectNames=che%20server) for the `che server` project. - -Here are additional useful links with the `che-server` builds data: -- [Build Scans](https://develocity-staging.eclipse.org/scans?search.rootProjectNames=che%20server) -- [Trends dashboard](https://develocity-staging.eclipse.org/scans/trends?search.rootProjectNames=che%20server) -- [Failures dashboard](https://develocity-staging.eclipse.org/scans/failures?search.rootProjectNames=che%20server) -- Failed and flaky [Tests dashboard](https://develocity-staging.eclipse.org/scans/tests?search.rootProjectNames=che%20server) - ## SBOM To enhance supply chain security and offer users clear insight into project components, Eclipse Che now generates a Software Bill of Materials (SBOM) for every release. These are published to the Eclipse Foundation SBOM registry, with access instructions and usage details available in this [documentation](https://eclipse-csi.github.io/security-handbook/sbom/registry.html). diff --git a/pom.xml b/pom.xml index eaa954abfa1..e369a939773 100644 --- a/pom.xml +++ b/pom.xml @@ -1885,25 +1885,6 @@ - - com.gradle - develocity-maven-extension - - - - - - - Implementation-Version - Date - SCM-Revision - - - - - - - From d434562e15dc2cfa68988b7fac7c2b9e4d16779b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C5=A1per=20Kojek?= Date: Thu, 12 Mar 2026 09:13:21 +0100 Subject: [PATCH 2/2] chore: retrigger CI