From 4f37a443c8dc02bf4b46b0e56e3a9226b4c04b16 Mon Sep 17 00:00:00 2001 From: rigazilla Date: Fri, 6 Oct 2023 12:23:19 +0200 Subject: [PATCH] updated to 15.0.0 --- .github/workflows/cd.yaml | 8 ++++---- .github/workflows/ci.yaml | 8 ++++---- .github/workflows/memcheck.yaml | 6 +++--- Jenkinsfile | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 0cba9a0c..53bc029e 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -1,6 +1,6 @@ name: infinispan-cpp-client-release-9.3 env: - ISPN_VER: "14.0.6.Final" + ISPN_VER: "15.0.0.Dev07" on: push: tags: @@ -15,7 +15,7 @@ jobs: - run: echo $GITHUB_REF_NAME - run: mkdir build && chmod a+rwx . documentation build - run: podman build -t quay.io/rigazilla/ci-build-centos-8:latest -f ci-build/centos-stream8.Dockerfile . - - run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-8:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=14.0.6.Final CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el8 ./build.sh" + - run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-8:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.0.0.Dev07 CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el8 ./build.sh" - uses: ncipollo/release-action@v1 with: artifacts: "build/*.rpm,builddeb/*.deb" @@ -31,7 +31,7 @@ jobs: - run: echo $GITHUB_REF_NAME - run: mkdir build && chmod a+rwx . documentation build - run: podman build -t quay.io/rigazilla/ci-build-centos-9:latest -f ci-build/centos-stream9.Dockerfile . - - 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=14.0.6.Final CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el9 ./build.sh" + - 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.0.Dev07 CLIENT_VERSION=$GITHUB_REF_NAME PLATFORM_TAG=el9 ./build.sh" - uses: ncipollo/release-action@v1 with: artifacts: "build/*.rpm,builddeb/*.deb" @@ -84,7 +84,7 @@ jobs: set PROTOBUF_PROTOC_EXECUTABLE=${{ github.workspace }}\libs\bin\protoc.exe set PROTOBUF_PROTOC_LIBRARY=${{ github.workspace }}\libs\lib\libprotoc.lib set PROTOBUF_INCLUDE_DIR=${{ github.workspace }}\libs\include - set INFINISPAN_VERSION=14.0.6.Final + set INFINISPAN_VERSION=15.0.0.Dev07 set CLIENT_VERSION=%GITHUB_REF_NAME% build.bat - uses: ncipollo/release-action@v1 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2dfd3fed..a8d53d05 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,6 @@ name: infinispan-cpp-client-pr env: - ISPN_VER: "14.0.6.Final" + ISPN_VER: "15.0.0.Dev07" CLIENT_VERSION: ${{ github.event.release.tag_name }} on: push: @@ -21,7 +21,7 @@ jobs: - run: echo $GITHUB_BASE_REF - run: mkdir build && chmod a+rwx . documentation build - run: podman build -t quay.io/rigazilla/ci-build-centos-8:latest -f ci-build/centos-stream8.Dockerfile . - - run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-8:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=14.0.6.Final ISPN_CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el8 ./build.sh" + - run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-8:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.0.0.Dev07 ISPN_CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el8 ./build.sh" - if: ${{ github.event_name == 'push' }} uses: ncipollo/release-action@v1 with: @@ -38,7 +38,7 @@ jobs: - run: echo $GITHUB_REF_NAME - run: mkdir build && chmod a+rwx . documentation build - run: podman build -t quay.io/rigazilla/ci-build-centos-9:latest -f ci-build/centos-stream9.Dockerfile . - - 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=14.0.6.Final CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el9 ./build.sh" + - 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.0.Dev07 CLIENT_VERSION=$GITHUB_REF_NAME-latest PLATFORM_TAG=el9 ./build.sh" - if: ${{ github.event_name == 'push' }} uses: ncipollo/release-action@v1 with: @@ -91,7 +91,7 @@ jobs: set PROTOBUF_PROTOC_EXECUTABLE=${{ github.workspace }}\libs\bin\protoc.exe set PROTOBUF_PROTOC_LIBRARY=${{ github.workspace }}\libs\lib\libprotoc.lib set PROTOBUF_INCLUDE_DIR=${{ github.workspace }}\libs\include - set INFINISPAN_VERSION=14.0.6.Final + set INFINISPAN_VERSION=15.0.0.Dev07 set CLIENT_VERSION=%GITHUB_REF_NAME%-latest set ISPN_CLIENT_VERSION=%GITHUB_REF_NAME%-latest build.bat diff --git a/.github/workflows/memcheck.yaml b/.github/workflows/memcheck.yaml index 1a0ffea8..d5e0c8c5 100644 --- a/.github/workflows/memcheck.yaml +++ b/.github/workflows/memcheck.yaml @@ -1,6 +1,6 @@ name: infinispan-cpp-client-memcheck env: - ISPN_VER: "14.0.6.Final" + ISPN_VER: "15.0.0.Dev07" CLIENT_VERSION: ${{ github.event.release.tag_name }} on: push: @@ -23,7 +23,7 @@ jobs: - run: podman build -t quay.io/rigazilla/ci-build-centos-8:latest -f ci-build/centos-stream8.Dockerfile . - name: Run CI tests id: ci-tests - run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-8:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=14.0.4.Final CLIENT_VERSION=$GITHUB_BASE_REF.$GITHUB_REF_SLUG PLATFORM_TAG=el8 ./build.sh MEMECHECK" + run: podman run -v `pwd`:/home/jboss/cpp-client quay.io/rigazilla/ci-build-centos-8:latest /bin/bash -c "cd cpp-client && INFINISPAN_VERSION=15.0.0.Dev07 CLIENT_VERSION=$GITHUB_BASE_REF.$GITHUB_REF_SLUG PLATFORM_TAG=el8 ./build.sh MEMECHECK" - name: Archive memcheck results if: failure() || success() uses: actions/upload-artifact@v3 @@ -47,7 +47,7 @@ jobs: - run: podman build -t quay.io/rigazilla/ci-build-centos-9:latest -f ci-build/centos-stream9.Dockerfile . - name: Run CI tests id: ci-tests - 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=14.0.4.Final CLIENT_VERSION=$GITHUB_BASE_REF.$GITHUB_REF_SLUG PLATFORM_TAG=el9 ./build.sh MEMCHECK" + 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.0.Dev07 CLIENT_VERSION=$GITHUB_BASE_REF.$GITHUB_REF_SLUG PLATFORM_TAG=el9 ./build.sh MEMCHECK" - name: Archive memcheck results if: failure() || success() uses: actions/upload-artifact@v3 diff --git a/Jenkinsfile b/Jenkinsfile index f1824a86..c3e66073 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline{ cppTag = "${GIT_BRANCH}" CMAKE_HOME = 'C:\\\\PROGRA~2\\\\CMake\\\\bin' generator = '"Visual Studio 14 2015 Win64"' - INFINISPAN_VERSION = '14.0.4.Final' + INFINISPAN_VERSION = '15.0.0.Dev07' JAVA_HOME = 'C:\\\\PROGRA~1\\\\JAVA\\\\JDK-11~1.2' M2_HOME = 'C:\\\\APACHE~1.9' MVN_PROGRAM = 'C:\\\\APACHE~1.9\\\\BIN\\\\MVN.BAT' @@ -37,7 +37,7 @@ pipeline{ } environment { HOTROD_LOG_LEVEL = 'INFO' - INFINISPAN_VERSION = '14.0.4.Final' + INFINISPAN_VERSION = '15.0.0.Dev07' JBOSS_HOME = '/home/ec2-user/ispn/infinispan-server' M2_HOME = '/opt/maven' PATH = "${M2_HOME}/bin:${PATH}"