Skip to content

Commit e985538

Browse files
committed
a
1 parent ca02f02 commit e985538

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

.github/actions/build-test/ubuntu-i386/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ runs:
9292
./scripts/install-thrift.sh ${{ inputs.THRIFT_VERSION }}
9393
9494
- name: Configure Resources
95-
if: ${{ inputs.run_tests }}
95+
if: ${{ inputs.run_tests == 'true' }}
9696
shell: bash
9797
run: |
9898
ulimit -c unlimited

.github/actions/build-test/ubuntu-x86_64/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ runs:
5454
sudo ./scripts/install-thrift.sh ${{ inputs.THRIFT_VERSION }}
5555
5656
- name: Configure Resources
57-
if: ${{ inputs.run_tests }}
57+
if: ${{ inputs.run_tests == 'true' }}
5858
shell: bash
5959
run: |
6060
ulimit -c unlimited

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151

5252
- name: Download hazelcast-enterprise-tests.jar
5353
shell: pwsh
54-
if: ${{ inputs.run_tests }}
54+
if: ${{ inputs.run_tests == 'true' }}
5555
run: |
5656
gh api "/repos/hazelcast/private-test-artifacts/contents/certs.jar?ref=data" -H "Accept: application/vnd.github.raw" > hazelcast-enterprise-${{ env.HZ_VERSION }}-tests.jar
5757
env:
@@ -152,7 +152,7 @@ runs:
152152
-DBUILD_EXAMPLES=OFF
153153
154154
- name: Test
155-
if: ${{ inputs.run_tests }}
155+
if: ${{ inputs.run_tests == 'true' }}
156156
env:
157157
BUILD_DIR: build
158158
BUILD_CONFIGURATION: ${{ inputs.BUILD_TYPE }}

.github/actions/coverage-report/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
sudo apt-get install -y net-tools libssl-dev gdb gcovr lcov curl
3737
3838
- name: Download hazelcast-enterprise-tests.jar
39-
if: ${{ inputs.run_tests }}
39+
if: ${{ inputs.run_tests == 'true' }}
4040
shell: bash
4141
run: |
4242
gh api "/repos/hazelcast/private-test-artifacts/contents/certs.jar?ref=data" -H "Accept: application/vnd.github.raw" > hazelcast-enterprise-${{ env.HZ_VERSION }}-tests.jar
@@ -74,7 +74,7 @@ runs:
7474
-DBUILD_EXAMPLES=OFF
7575
7676
- name: Test
77-
if: ${{ inputs.run_tests }}
77+
if: ${{ inputs.run_tests == 'true' }}
7878
env:
7979
BUILD_DIR: build
8080
HAZELCAST_ENTERPRISE_KEY: ${{ inputs.HAZELCAST_ENTERPRISE_KEY }}

.github/workflows/regenerate-reference-manual.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v5
17-
#with:
18-
#ref: ${{ github.head_ref }}
19-
20-
#- name: Regenerate
21-
# run: |
22-
# cmake -S . -B build
17+
with:
18+
# TODO Comment
19+
ref: ${{ github.head_ref }}
2320

2421
- uses: ./.github/actions/build-test/ubuntu-x86_64
2522
with:

0 commit comments

Comments
 (0)