Skip to content

[CI][Github] Remove test naming from premerge jobs #141527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci/metrics/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
# name.
GITHUB_JOB_TO_TRACK = {
"github_llvm_premerge_checks": {
"Build and Test Linux (Test Only - Please Ignore Results)": "premerge_linux",
"Build and Test Windows (Test Only - Please Ignore Results)": "premerge_windows",
"Build and Test Linux": "premerge_linux",
"Build and Test Windows": "premerge_windows",
}
}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/premerge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:

jobs:
premerge-checks-linux:
name: Build and Test Linux (Test Only - Please Ignore Results)
name: Build and Test Linux
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
include-hidden-files: 'true'

premerge-checks-windows:
name: Build and Test Windows (Test Only - Please Ignore Results)
name: Build and Test Windows
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
Expand Down
Loading