You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A tool to find flakey jobs in a Concourse pipeline. Flakey in this context is when a build fails when it has otherwise passed with the same set of inputs. This is currently restricted to only checking changes to git input.
3
+
A tool to find flakey jobs in a Concourse pipeline. Flakey in this context is when a build fails when it has otherwise passed with the same set of inputs. This is currently restricted to only checking changes to git resources.
4
4
5
5
In order to build the flake-detect checkout the repo and run `cd cmd/flake-detector && go build .`
6
6
## Usage
@@ -13,36 +13,33 @@ In order to build the flake-detect checkout the repo and run `cd cmd/flake-detec
13
13
14
14
`-count <number of builds to scan>` Optional- Only scan the last x amount of builds. Currently max's and defaults at 100.
15
15
16
-
`-bearer <bearer authentication token>` Optional- Needed if your pipeline is not public. To obtain a bearer token go to `<ci-url>/api/v1/teams/<team>/auth/token`or run the `flake-detector` without the flag configured and it will prompt you with the URL to go to to obtained a token.
16
+
`-bearer <bearer authentication token>` Optional- Needed if your pipeline is not public. To obtain a bearer token go to `<ci-url>/api/v1/teams/<team>/auth/token`or run the `flake-detector` without the flag configured and it will prompt you with the URL to go to obtain a token.
17
17
18
18
`-debug <boolean>` Optional- Configure true if you want debug information about what endpoints are being hit.
19
19
20
20
21
21
22
-
`./flake-detector -pipeline <pipeline-name> -url <ci-url>`. If your pipeline is configured under a team add the `-team <my-team-name>` flag.
23
-
24
-
25
22
##### Examples
26
23
27
24
`./flake-detector -team main -pipeline main -url https://ci.concourse.ci`
0 commit comments