Skip to content

Commit d0686ff

Browse files
committed
Ignore dialyze errors for rabbitmq_ct_helpers & trust_store_http
in make as we do in bazel
1 parent 4d21a9a commit d0686ff

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/test-make.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
trc: /home/runner/test-result-cache
6666
hash: ${{ needs.load-test-result-cache.outputs.hash }}
6767
plugin: ${{ matrix.plugin }}
68+
ignore-dialyze-errors: ${{ matrix.plugin == 'rabbitmq_ct_helpers' || matrix.plugin == 'trust_store_http' }}
6869
test-rabbit:
6970
needs:
7071
- load-test-result-cache

.github/workflows/test-plugin-make.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111
plugin:
1212
required: true
1313
type: string
14+
ignore-dialyze-errors:
15+
type: boolean
1416
jobs:
1517
test:
1618
name: Test
@@ -66,6 +68,7 @@ jobs:
6668
make -C deps/${{ inputs.plugin }} \
6769
dialyze \
6870
RABBITMQ_METADATA_STORE=${{ matrix.metadata_store }}
71+
continue-on-error: ${{ inputs.ignore-dialyze-errors }}
6972
- name: EUNIT ${{ inputs.plugin }}
7073
if: steps.check.outputs.passed != 'true'
7174
run: |

0 commit comments

Comments
 (0)