Skip to content

Commit

Permalink
Upgrade to Valkey 8.0.2.
Browse files Browse the repository at this point in the history
Close #3094
  • Loading branch information
mp911de committed Jan 16, 2025
1 parent 939af14 commit 1e40558
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ pipeline {
}
}
}
stage('Publish JDK 17 + Valkey 7.2 Docker Image') {
stage('Publish JDK 17 + Valkey 8.0 Docker Image') {
when {
anyOf {
changeset "ci/openjdk17-valkey-7.2/Dockerfile"
changeset "ci/openjdk17-valkey-8.0/Dockerfile"
changeset "Makefile"
changeset "ci/pipeline.properties"
}
Expand All @@ -73,7 +73,7 @@ pipeline {

steps {
script {
def image = docker.build("springci/spring-data-with-valkey-7.2:${p['java.main.tag']}", "--build-arg BASE=${p['docker.java.main.image']} --build-arg VERSION=${p['docker.redis.7.version']} -f ci/openjdk17-redis-7.2/Dockerfile .")
def image = docker.build("springci/spring-data-with-valkey-8.0:${p['java.main.tag']}", "--build-arg BASE=${p['docker.java.main.image']} --build-arg VERSION=${p['docker.valkey.8.version']} -f ci/openjdk17-valkey-8.0/Dockerfile .")
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
image.push()
}
Expand Down Expand Up @@ -197,7 +197,7 @@ pipeline {
}
}

stage("test: Valkey 7") {
stage("test: Valkey 8") {
agent {
label 'data'
}
Expand All @@ -209,7 +209,7 @@ pipeline {
steps {
script {
docker.withRegistry(p['docker.proxy.registry'], p['docker.proxy.credentials']) {
docker.image("springci/spring-data-with-valkey-7.2:${p['java.main.tag']}").inside(p['docker.java.inside.docker']) {
docker.image("springci/spring-data-with-valkey-8.0:${p['java.main.tag']}").inside(p['docker.java.inside.docker']) {
sh "PROFILE=none LONG_TESTS=true JENKINS_USER_NAME=${p['jenkins.user.name']} ci/test.sh"
}
}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION:=7.2.5
VERSION?=7.2.5
PROJECT?=redis
GH_ORG?=redis
SPRING_PROFILE?=ci
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions ci/pipeline.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ docker.mongodb.8.0.version=8.0.0
# Supported versions of Redis
docker.redis.6.version=6.2.13
docker.redis.7.version=7.2.4
docker.valkey.8.version=8.0.2

# Supported versions of Cassandra
docker.cassandra.3.version=3.11.16
Expand Down

0 comments on commit 1e40558

Please sign in to comment.