Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make custom-lib optional and switch to JDK 11 #187

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'

- name: Set HZ_VERSION
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'

- name: Download the distribution tar.gz file
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'

- name: Install Required tools
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'

- name: Download the distribution tar.gz file
Expand Down
2 changes: 2 additions & 0 deletions packages/rpm/hazelcast.spec
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ rm -rf $RPM_BUILD_ROOT
%{__ln_s} %{_prefix}/lib/hazelcast/bin/hz-healthcheck %{buildroot}%{_bindir}/hz-healthcheck
%{__ln_s} %{_prefix}/lib/hazelcast/bin/hz-start %{buildroot}%{_bindir}/hz-start
%{__ln_s} %{_prefix}/lib/hazelcast/bin/hz-stop %{buildroot}%{_bindir}/hz-stop
# Fix for missing custom-lib
%{__mkdir} -p %{buildroot}%{_prefix}/lib/hazelcast/custom-lib

echo 'hazelcastDownloadId=rpm' > "%{buildroot}%{_prefix}/lib/hazelcast/lib/hazelcast-download.properties"

Expand Down