Skip to content

Commit

Permalink
Updated to 15.x
Browse files Browse the repository at this point in the history
  • Loading branch information
rigazilla committed Oct 13, 2023
1 parent 178ecfb commit 880351f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-nupkg.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: infinispan-nupkg
env:
ISPN_VER: "14.0.6.Final"
ISPN_VER: "15.0.0.Dev04"
on:
push:
tags:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: infinispan-netcore-tests
env:
ISPN_VER: "14.0.6.Final"
ISPN_VER: "15.0.0.Dev04"
CLIENT_VERSION: ${{ github.event.release.tag_name }}
on:
push:
Expand Down Expand Up @@ -50,7 +50,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.Dev04
set cppTag=%GITHUB_REF_NAME%
set CLIENT_VERSION=%GITHUB_REF_NAME%
git clone -b %cppTag% https://github.com/infinispan/cpp-client.git
Expand All @@ -77,8 +77,8 @@ jobs:
dir
set generator="Visual Studio 17 2022"
set checkoutDir=${{ github.workspace }}
set INFINISPAN_VERSION=14.0.6.Final
set JBOSS_HOME=${{ github.workspace }}\cpp-client\infinispan-server-14.0.6.Final
set INFINISPAN_VERSION=15.0.0.Dev04
set JBOSS_HOME=${{ github.workspace }}\cpp-client\infinispan-server-15.0.0.Dev04
set PROTOBUF_LIBRARY=${{ github.workspace }}\libs\lib\libprotobuf.lib
set PROTOBUF_PROTOC_EXECUTABLE=${{ github.workspace }}\libs\bin\protoc.exe
set PROTOBUF_PROTOC_LIBRARY=${{ github.workspace }}\libs\lib\libprotoc.lib
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-nupkg.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: infinispan-nupkg
env:
ISPN_VER: "14.0.6.Final"
ISPN_VER: "15.0.0.Dev04"
on:
push:
branches:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: infinispan-netcore-tests
env:
ISPN_VER: "14.0.6.Final"
ISPN_VER: "15.0.0.Dev04"
cppTag: "main"
CLIENT_VERSION: ${{ github.event.release.tag_name }}
on:
Expand Down Expand Up @@ -56,7 +56,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.Dev04
set cppTag=%GITHUB_REF_NAME%
set CLIENT_VERSION=%GITHUB_REF_NAME%
git clone -b %cppTag% https://github.com/infinispan/cpp-client.git
Expand All @@ -83,8 +83,8 @@ jobs:
dir
set generator="Visual Studio 17 2022"
set checkoutDir=${{ github.workspace }}
set INFINISPAN_VERSION=14.0.6.Final
set JBOSS_HOME=${{ github.workspace }}\cpp-client\infinispan-server-14.0.6.Final
set INFINISPAN_VERSION=15.0.0.Dev04
set JBOSS_HOME=${{ github.workspace }}\cpp-client\infinispan-server-15.0.0.Dev04
set PROTOBUF_LIBRARY=${{ github.workspace }}\libs\lib\libprotobuf.lib
set PROTOBUF_PROTOC_EXECUTABLE=${{ github.workspace }}\libs\bin\protoc.exe
set PROTOBUF_PROTOC_LIBRARY=${{ github.workspace }}\libs\lib\libprotoc.lib
Expand Down
2 changes: 1 addition & 1 deletion buildtools/build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let cppClientPackageVersion = environVar "buildTag" // nuget does not support st
let swigVersion = "3.0.12"
let protobufVersion = "3.8.0" // if changing this, be sure to also update Google.Protobuf in src/Infinispan.HotRod/Infinispan.HotRod.csproj
let nunitToolsVersion = "2.6.1"
let infinispanServerVersion = "14.0.6.Final"
let infinispanServerVersion = "15.0.0.Dev04"

let generateDir = "../../../src/Infinispan.HotRod/generated"
let generateSwigDir = "../src/Infinispan.HotRod/generated"
Expand Down

0 comments on commit 880351f

Please sign in to comment.