Skip to content

Commit 1bc42c9

Browse files
authored
a
1 parent e9c9fe7 commit 1bc42c9

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/actions/build-test/unix/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ env:
3434
runs:
3535
using: composite
3636
steps:
37+
- name: Local build
38+
shell: ${{ env.shell }}
39+
working-direct: hazelcast-repo
40+
run: |
41+
./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout
42+
echo "HAZELCAST_VERSION=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)" >> ${GITHUB_ENV}
43+
3744
- name: Download hazelcast-enterprise-tests.jar
3845
shell: ${{ env.shell }}
3946
run: |

.github/config.env

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
JAVA_VERSION=17
22
JAVA_DISTRIBUTION=temurin
3-
MAVEN_VERSION=3.9.9
4-
HAZELCAST_VERSION=5.4.0
3+
MAVEN_VERSION=3.9.9

scripts/start-rc.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ set +x
3434

3535
trap cleanup EXIT
3636

37-
hazelcast-repo/mvnw help:evaluate -Dexpression=project.version -q -DforceStdout --file hazelcast-repo
38-
39-
HZ_VERSION=$(hazelcast-repo/mvnw help:evaluate -Dexpression=project.version -q -DforceStdout --file hazelcast-repo)
37+
HZ_VERSION=${HZ_VERSION:-5.4.0}
4038
HAZELCAST_TEST_VERSION=${HZ_VERSION}
4139
HAZELCAST_ENTERPRISE_VERSION=${HZ_VERSION}
4240
HAZELCAST_RC_VERSION=0.8-SNAPSHOT

0 commit comments

Comments
 (0)