Skip to content

Commit

Permalink
OSCI-6280
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei Stepanov <astepano@redhat.com>
  • Loading branch information
Andrei-Stepanov committed Feb 2, 2024
1 parent 03d1012 commit 1ff11ca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/fedoraci/ciboard-server:c8272a7
FROM quay.io/fedoraci/ciboard-server:ca19de9

# npm mirror to use to install dependencies.
ARG NPMLOCATION=open
Expand Down
11 changes: 9 additions & 2 deletions src/components/GatingStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ const gwStateMappings: Record<GreenwaveRequirementTypes, any> = {
blacklisted: { default: 'blacklisted' },
'test-result-failed': {
needs_inspection: 'needs inspection',
failed: 'failed',
default: 'failed',
},
'test-result-passed': {
Expand All @@ -99,9 +100,15 @@ const gwStateMappings: Record<GreenwaveRequirementTypes, any> = {
'failed-fetch-gating-yaml': { default: 'fail fetch gating.yaml' },
'invalid-gating-yaml-waived': { default: 'invalid gating.yaml waived' },
'missing-gating-yaml-waived': { default: 'missing gating.yaml waived' },
'test-result-failed-waived': { default: 'failed waived' },
'test-result-failed-waived': {
needs_inspection: 'needs inspection',
default: 'failed waived',
},
'test-result-missing-waived': { default: 'missing waived' },
'test-result-errored-waived': { default: 'erroredd waived' },
'test-result-errored-waived': {
error: 'errored',
default: 'errored waived',
},
'failed-fetch-gating-yaml-waived': {
default: 'fail fetch gating.yaml waived',
},
Expand Down

0 comments on commit 1ff11ca

Please sign in to comment.