We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d21a9a commit d0686ffCopy full SHA for d0686ff
.github/workflows/test-make.yaml
@@ -65,6 +65,7 @@ jobs:
65
trc: /home/runner/test-result-cache
66
hash: ${{ needs.load-test-result-cache.outputs.hash }}
67
plugin: ${{ matrix.plugin }}
68
+ ignore-dialyze-errors: ${{ matrix.plugin == 'rabbitmq_ct_helpers' || matrix.plugin == 'trust_store_http' }}
69
test-rabbit:
70
needs:
71
- load-test-result-cache
.github/workflows/test-plugin-make.yaml
@@ -11,6 +11,8 @@ on:
11
plugin:
12
required: true
13
type: string
14
+ ignore-dialyze-errors:
15
+ type: boolean
16
jobs:
17
test:
18
name: Test
@@ -66,6 +68,7 @@ jobs:
make -C deps/${{ inputs.plugin }} \
dialyze \
RABBITMQ_METADATA_STORE=${{ matrix.metadata_store }}
+ continue-on-error: ${{ inputs.ignore-dialyze-errors }}
72
- name: EUNIT ${{ inputs.plugin }}
73
if: steps.check.outputs.passed != 'true'
74
run: |
0 commit comments