Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update
  • Loading branch information
yuce committed Dec 11, 2025
commit 35fee81945cea033d16f53ab413673a2ec11948f
9 changes: 6 additions & 3 deletions .github/workflows/coverage_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ jobs:
ref: data
token: ${{ secrets.GH_TOKEN }}

- name: Create the test jar with certificates
- name: Create the test jar with certificates (Linux)
if: matrix.os == 'ubuntu-latest'
working-directory: certs
run: |
echo "HERE: $(pwd)"
Expand All @@ -106,14 +107,16 @@ jobs:
zip -r -j certs.jar $GITHUB_WORKSPACE/tests/integration/backward_compatible/ssl_tests/hostname_verification
cp certs.jar ../hazelcast-enterprise-${{ matrix.hz_version }}-tests.jar

- name: Download RCD Linux
- name: Download RCD Linux (Linux)
if: matrix.os == 'ubuntu-latest'
shell: bash
run: |
echo "HERE: $PWD"
echo "ROOT_FOLDER: ${{ steps.get-root-folder.outputs.ROOT_FOLDER }}"
wget -q https://client-rcd-download.s3.us-east-2.amazonaws.com/rcd-ubuntu-latest

- name: Start Hazelcast Remote Controller Linux
- name: Start Hazelcast Remote Controller (Linux)
if: matrix.os == 'ubuntu-latest'
env:
HZ_VERSION: ${{ matrix.hz_version }}
HAZELCAST_ENTERPRISE_KEY: secrets[HAZELCAST_ENTERPRISE_KEY]
Expand Down