-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use AWS s3 for tekton results in dev mode
Signed-off-by: Pavel Macík <[email protected]>
- Loading branch information
Showing
11 changed files
with
221 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(.ts | strftime("%Y-%m-%dT%H:%M:%SZ")) + (.ts | tostring | capture(".*(?<milliseconds>\\.\\d+)") | .milliseconds) + (.ts | strftime("%z")) + ( .msg | capture("GGM (?<type>.+) name (?<name>\\S+) .+ time spent (?<duration>.*)") | ";" + (.type) + ";" + (.name) + ";" + (.duration) + ";" + (.duration as $d | ( (if $d | contains("m") and (endswith("ms") | not) then ($d | capture("(?<minutes>\\d+)m(?<seconds>\\d+\\.?(\\d+)?)s") | (.minutes | tonumber * 60) + (.seconds | tonumber)) else 0 end) + (if $d | (contains("m") | not) and contains("s") and (endswith("ms") | not) then ($d | capture("(?<seconds>\\d+\\.\\d+)s") | (.seconds | tonumber)) else 0 end) + (if $d | endswith("ms") then ($d | split("ms") | .[0] | tonumber / 1000) else 0 end) + ) | tostring ) ) |
Oops, something went wrong.