Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REL-3457 Release SonarQube Server 10.8.1 #730

Merged
merged 4 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .cirrus/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ env:
GCLOUD_STAGING_REGISTRY: gcr.io/sonarqube-marketplace-provider
GCLOUD_STAGING_PRODUCT_NAME: sonarqube-dce-staging
CURRENT_LTA_VERSION: 9.9.7
CURRENT_VERSION: 10.8.0
NEXT_VERSION: 10.9.0
COMMUNITY_BUILD_VERSION: 100206
CURRENT_VERSION: 10.8.1
NEXT_VERSION: 2025.1
# Must be in the format YY.MM.0.###### where ###### is the build number
COMMUNITY_BUILD_VERSION: 24.12.0.100206


build_server_hw_template: &BUILD_SERVER_HW_TEMPLATE
Expand Down Expand Up @@ -97,7 +98,7 @@ multi_arch_build_task_template: &multi_arch_build_task_template

multi_arch_build_9_x_task:
<<: *multi_arch_build_task_template
skip: "!changesInclude('9/**/*')"
skip: "!changesInclude('9/**/*') && !changesInclude('.cirrus/*')"
env:
matrix:
- version: 9/community
Expand All @@ -113,7 +114,7 @@ multi_arch_build_9_x_task:

multi_arch_build_10_x_task:
<<: *multi_arch_build_task_template
skip: "!changesInclude('10/**/*')"
skip: "!changesInclude('10/**/*') && !changesInclude('.cirrus/*')"
env:
matrix:
- version: 10/developer
Expand All @@ -127,7 +128,7 @@ multi_arch_build_10_x_task:

multi_arch_build_community_build_task:
<<: *multi_arch_build_task_template
skip: "!changesInclude('community-build/*')"
skip: "!changesInclude('community-build/*') && !changesInclude('.cirrus/*')"
env:
matrix:
- version: community-build
Expand Down Expand Up @@ -188,7 +189,7 @@ multi_arch_test_task_template: &multi_arch_test_task_template

multi_arch_test_9_x_task:
<<: *multi_arch_test_task_template
skip: "!changesInclude('9/**/*')"
skip: "!changesInclude('9/**/*') && !changesInclude('.cirrus/*')"
matrix:
- env:
CIRRUS_ARCH: arm64
Expand All @@ -212,7 +213,7 @@ multi_arch_test_9_x_task:

multi_arch_test_10_x_task:
<<: *multi_arch_test_task_template
skip: "!changesInclude('10/**/*')"
skip: "!changesInclude('10/**/*') && !changesInclude('.cirrus/*')"
matrix:
- env:
CIRRUS_ARCH: arm64
Expand All @@ -234,7 +235,7 @@ multi_arch_test_10_x_task:

multi_arch_test_community_build_task:
<<: *multi_arch_test_task_template
skip: "!changesInclude('community-build/*')"
skip: "!changesInclude('community-build/*') && !changesInclude('.cirrus/*')"
matrix:
- env:
CIRRUS_ARCH: arm64
Expand Down
2 changes: 1 addition & 1 deletion 10/datacenter/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV LANG='en_US.UTF-8' \
#
# SonarQube setup
#
ARG SONARQUBE_VERSION=10.8.0.100206
ARG SONARQUBE_VERSION=10.8.1.101195
ARG SONARQUBE_ZIP_URL=https://binaries.sonarsource.com/CommercialDistribution/sonarqube-datacenter/sonarqube-datacenter-${SONARQUBE_VERSION}.zip
ENV DOCKER_RUNNING="true" \
JAVA_HOME='/opt/java/openjdk' \
Expand Down
2 changes: 1 addition & 1 deletion 10/datacenter/search/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV LANG='en_US.UTF-8' \
#
# SonarQube setup
#
ARG SONARQUBE_VERSION=10.8.0.100206
ARG SONARQUBE_VERSION=10.8.1.101195
ARG SONARQUBE_ZIP_URL=https://binaries.sonarsource.com/CommercialDistribution/sonarqube-datacenter/sonarqube-datacenter-${SONARQUBE_VERSION}.zip
ENV DOCKER_RUNNING="true" \
JAVA_HOME='/opt/java/openjdk' \
Expand Down
2 changes: 1 addition & 1 deletion 10/developer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV LANG='en_US.UTF-8' \
#
# SonarQube setup
#
ARG SONARQUBE_VERSION=10.8.0.100206
ARG SONARQUBE_VERSION=10.8.1.101195
ARG SONARQUBE_ZIP_URL=https://binaries.sonarsource.com/CommercialDistribution/sonarqube-developer/sonarqube-developer-${SONARQUBE_VERSION}.zip
ENV DOCKER_RUNNING="true" \
JAVA_HOME='/opt/java/openjdk' \
Expand Down
2 changes: 1 addition & 1 deletion 10/enterprise/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV LANG='en_US.UTF-8' \
#
# SonarQube setup
#
ARG SONARQUBE_VERSION=10.8.0.100206
ARG SONARQUBE_VERSION=10.8.1.101195
ARG SONARQUBE_ZIP_URL=https://binaries.sonarsource.com/CommercialDistribution/sonarqube-enterprise/sonarqube-enterprise-${SONARQUBE_VERSION}.zip
ENV DOCKER_RUNNING="true" \
JAVA_HOME='/opt/java/openjdk' \
Expand Down
Loading