Skip to content

Commit eb961eb

Browse files
committed
merge main into amd-staging
revert: SPIRV 2nd patch from llvm needed 5528388 EarlyCSE: fix CmpPredicate duplicate-hashing (llvm#119902) Change-Id: Ib28de7b92a661965bc294313b117de96cd2e056a
2 parents b02068a + 97c3c32 commit eb961eb

File tree

84 files changed

+2342
-885
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+2342
-885
lines changed

.github/workflows/build-ci-container-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
name: container
6969
- name: Push Container
7070
run: |
71-
docker load -i ${{ needs.build-ci-container.outptus.container-filename }}
72-
docker tag ${{ steps.vars.outputs.container-name-tag }} ${{ steps.vars.outputs.container-name }}:latest
71+
docker load -i ${{ needs.build-ci-container-windows.outputs.container-filename }}
72+
docker tag ${{ needs.build-ci-container-windows.outputs.container-name-tag }} ${{ needs.build-ci-container-windows.outputs.container-name }}:latest
7373
docker login -u ${{ github.actor }} -p $env:GITHUB_TOKEN ghcr.io
74-
docker push ${{ needs.build-ci-container.outputs.container-name-tag }}
75-
docker push ${{ needs.build-ci-container.outputs.container-name }}:latest
74+
docker push ${{ needs.build-ci-container-windows.outputs.container-name-tag }}
75+
docker push ${{ needs.build-ci-container-windows.outputs.container-name }}:latest

.github/workflows/build-ci-container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ jobs:
8080

8181
- name: Push Container
8282
run: |
83-
podman load -i ${{ needs.build-ci-container.outptus.container-filename }}
84-
podman tag ${{ steps.vars.outputs.container-name-tag }} ${{ steps.vars.outputs.container-name }}:latest
83+
podman load -i ${{ needs.build-ci-container.outputs.container-filename }}
84+
podman tag ${{ needs.build-ci-container.outputs.container-name-tag }} ${{ needs.build-ci-container.outputs.container-name }}:latest
8585
podman login -u ${{ github.actor }} -p $GITHUB_TOKEN ghcr.io
8686
podman push ${{ needs.build-ci-container.outputs.container-name-tag }}
8787
podman push ${{ needs.build-ci-container.outputs.container-name }}:latest

clang-tools-extra/docs/clang-tidy/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ See also:
99
.. toctree::
1010
:maxdepth: 1
1111

12-
The list of clang-tidy checks <checks/list>
12+
List of Clang-Tidy Checks <checks/list>
1313
Clang-tidy IDE/Editor Integrations <Integrations>
1414
Getting Involved <Contributing>
1515
External Clang-Tidy Examples <ExternalClang-TidyExamples>
@@ -21,7 +21,7 @@ static analysis. :program:`clang-tidy` is modular and provides a convenient
2121
interface for writing new checks.
2222

2323

24-
Using clang-tidy
24+
Using Clang-Tidy
2525
================
2626

2727
:program:`clang-tidy` is a `LibTooling`_-based tool, and it's easier to work

0 commit comments

Comments
 (0)