Skip to content

Commit 54030ad

Browse files
committed
Bump server 15.2.0.Final
1 parent d0a8d92 commit 54030ad

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/cd.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: infinispan-cpp-client-release-9.3
22
env:
3-
ISPN_VER: "15.0.14.Final"
3+
ISPN_VER: "15.2.0.Final"
44
on:
55
push:
66
tags:
@@ -15,7 +15,7 @@ jobs:
1515
- run: echo $GITHUB_REF_NAME
1616
- run: mkdir build && chmod a+rwx . documentation build
1717
- run: podman build -t quay.io/rigazilla/ci-build-centos-10:latest -f ci-build/centos-stream10.Dockerfile .
18-
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-10:latest /bin/bash -c "cd cpp-client && PATH=\$JAVA_HOME/bin:$PATH INFINISPAN_VERSION=15.0.14.Final CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el10 ./build.sh"
18+
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-10:latest /bin/bash -c "cd cpp-client && PATH=\$JAVA_HOME/bin:$PATH INFINISPAN_VERSION=15.2.0.Final CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el10 ./build.sh"
1919
- uses: ncipollo/release-action@v1
2020
with:
2121
artifacts: "build/*.rpm,builddeb/*.deb"
@@ -31,7 +31,7 @@ jobs:
3131
- run: echo $GITHUB_REF_NAME
3232
- run: mkdir build && chmod a+rwx . documentation build
3333
- run: podman build -t quay.io/rigazilla/ci-build-centos-9:latest -f ci-build/centos-stream9.Dockerfile .
34-
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-9:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.0.14.Final CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el9 ./build.sh"
34+
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-9:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.2.0.Final CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el9 ./build.sh"
3535
- uses: ncipollo/release-action@v1
3636
with:
3737
artifacts: "build/*.rpm,builddeb/*.deb"
@@ -85,7 +85,7 @@ jobs:
8585
set PROTOBUF_PROTOC_EXECUTABLE=${{ github.workspace }}\libs\bin\protoc.exe
8686
set PROTOBUF_PROTOC_LIBRARY=${{ github.workspace }}\libs\lib\libprotoc.lib
8787
set PROTOBUF_INCLUDE_DIR=${{ github.workspace }}\libs\include
88-
set INFINISPAN_VERSION=15.0.14.Final
88+
set INFINISPAN_VERSION=15.2.0.Final
8989
set CLIENT_VERSION=%GITHUB_REF_NAME%
9090
build.bat
9191
- uses: ncipollo/release-action@v1

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: infinispan-cpp-client-pr
22
env:
3-
ISPN_VER: "15.0.14.Final"
3+
ISPN_VER: "15.2.0.Final"
44
CLIENT_VERSION: ${{ github.event.release.tag_name }}
55
on:
66
push:
@@ -21,7 +21,7 @@ jobs:
2121
- run: echo $GITHUB_BASE_REF
2222
- run: mkdir build && chmod a+rwx . documentation build
2323
- run: podman build -t quay.io/rigazilla/ci-build-centos-10:latest -f ci-build/centos-stream10.Dockerfile .
24-
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-10:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.0.14.Final ISPN_CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el10 ./build.sh"
24+
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-10:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.2.0.Final ISPN_CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el10 ./build.sh"
2525
- if: ${{ github.event_name == 'push' }}
2626
uses: ncipollo/release-action@v1
2727
with:
@@ -38,7 +38,7 @@ jobs:
3838
- run: echo $GITHUB_REF_NAME
3939
- run: mkdir build && chmod a+rwx . documentation build
4040
- run: podman build -t quay.io/rigazilla/ci-build-centos-9:latest -f ci-build/centos-stream9.Dockerfile .
41-
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-9:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.0.14.Final CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el9 ./build.sh"
41+
- run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-9:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.2.0.Final CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el9 ./build.sh"
4242
- if: ${{ github.event_name == 'push' }}
4343
uses: ncipollo/release-action@v1
4444
with:
@@ -91,7 +91,7 @@ jobs:
9191
set PROTOBUF_PROTOC_EXECUTABLE=${{ github.workspace }}\libs\bin\protoc.exe
9292
set PROTOBUF_PROTOC_LIBRARY=${{ github.workspace }}\libs\lib\libprotoc.lib
9393
set PROTOBUF_INCLUDE_DIR=${{ github.workspace }}\libs\include
94-
set INFINISPAN_VERSION=15.0.14.Final
94+
set INFINISPAN_VERSION=15.2.0.Final
9595
set CLIENT_VERSION=%GITHUB_REF_NAME%-latest
9696
set ISPN_CLIENT_VERSION=%GITHUB_REF_NAME%-latest
9797
build.bat

.github/workflows/memcheck.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: infinispan-cpp-client-memcheck
22
env:
3-
ISPN_VER: "15.0.14.Final"
3+
ISPN_VER: "15.2.0.Final"
44
CLIENT_VERSION: ${{ github.event.release.tag_name }}
55
on:
66
push:
@@ -23,7 +23,7 @@ jobs:
2323
- run: podman build -t quay.io/rigazilla/ci-build-centos-10:latest -f ci-build/centos-stream10.Dockerfile .
2424
- name: Run CI tests
2525
id: ci-tests
26-
run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-10:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.0.14.Final CLIENT_VERSION=$GITHUB_BASE_REF.$GITHUB_REF_SLUG PLATFORM_TAG=el10 ./build.sh MEMECHECK"
26+
run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-10:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.2.0.Final CLIENT_VERSION=$GITHUB_BASE_REF.$GITHUB_REF_SLUG PLATFORM_TAG=el10 ./build.sh MEMECHECK"
2727
- name: Archive memcheck results
2828
if: failure() || success()
2929
uses: actions/upload-artifact@v4.4.3

test/data/infinispan.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<cache-container name="default" statistics="true" default-cache="default">
99
<transport cluster="${infinispan.cluster.name}" stack="${infinispan.cluster.stack:tcp}"/>
10-
<local-cache name="default">
10+
<local-cache name="default" statistics="true">
1111
<expiration interval="1000"/>
1212
</local-cache>
1313
<local-cache name="namedCache"/>

0 commit comments

Comments
 (0)