-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3819 from github/esbena/annotated-performance-view
Hackathon: description on top of performance table
- Loading branch information
Showing
12 changed files
with
410 additions
and
157 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
type VariantId = string; | ||
type SourceId = string; | ||
type TargetId = string; | ||
|
||
type TargetInfo = { | ||
target_id: TargetId; | ||
variant_id: VariantId; | ||
source_id: SourceId; | ||
}; | ||
|
||
type SourceInfo = { | ||
source_id: SourceId; | ||
repository: string; | ||
sha: string; | ||
}; | ||
|
||
export type ArtifactDownload = { | ||
repository: string; | ||
run_id: number; | ||
artifact_name: string; | ||
}; | ||
|
||
type TargetDownloads = { | ||
"evaluator-logs": ArtifactDownload; | ||
}; | ||
|
||
export type MinimalDownloadsType = { | ||
sources: { | ||
[source: SourceId]: { info: SourceInfo }; | ||
}; | ||
targets: { | ||
[target: string]: { | ||
info: TargetInfo; | ||
downloads: TargetDownloads; | ||
}; | ||
}; | ||
}; | ||
|
||
export const dcaControllerRepository = { | ||
owner: "github", | ||
repo: "codeql-dca-main", | ||
}; |
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
Oops, something went wrong.