Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
ghc-perf-import
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
ghc-perf-import
Merge requests
!5
Record spurious failures
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Record spurious failures
b/record-spuriosities
into
master
Overview
1
Commits
8
Pipelines
0
Changes
5
Merged
Bryan R
requested to merge
b/record-spuriosities
into
master
2 years ago
Overview
1
Commits
8
Pipelines
0
Changes
5
Expand
Well, just 'Cannot connect to Docker daemon' failures, for starters.
Edited
2 years ago
by
Bryan R
0
0
Merge request reports
Compare
master
version 4
38d9170d
2 years ago
version 3
9cf0430f
2 years ago
version 2
e7c2b26d
2 years ago
version 1
4fabb658
2 years ago
master (base)
and
latest version
latest version
84cc49a1
8 commits,
2 years ago
version 4
38d9170d
8 commits,
2 years ago
version 3
9cf0430f
7 commits,
2 years ago
version 2
e7c2b26d
7 commits,
2 years ago
version 1
4fabb658
7 commits,
2 years ago
5 files
+
91
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
deploy-guides/0002-spurious-failure-reporting.md
0 → 100644
+
22
−
0
Options
# Deploy instructions for spurious failure logging
Follow the standard set by
[
0001-eventlog-importing.md
](
0001-eventlog-importing.md
)
.
## SQL for creating tables and privileges
```
sql
drop
type
if
exists
ci_failure_t
cascade
;
create
type
ci_failure_t
as
enum
(
'docker'
);
;
drop
table
if
exists
ci_failure
;
create
table
ci_failure
(
failure_id
bigserial
primary
key
,
job_id
bigint
not
null
,
type
ci_failure_t
,
job_date
timestamp
with
time
zone
);
;
grant
insert
,
select
on
ci_failure
to
ghc_perf
;
grant
usage
on
ci_failure_failure_id_seq
to
ghc_perf
;
grant
select
on
ci_failure
to
ghc_perf_web
;
```
Loading