[llvm] [libc++][CI] Removes clang-tidy references. (PR #89092)
Mark de Wever via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 17 08:56:54 PDT 2024
https://github.com/mordante created https://github.com/llvm/llvm-project/pull/89092
The clang-tidy selection has been made automatic recently so this is not longer needed.
Thanks to Louis for spotting this.
>From 79e96c534b74a7149453fe29e6d0dcb4e132f4c0 Mon Sep 17 00:00:00 2001
From: Mark de Wever <koraq at xs4all.nl>
Date: Wed, 17 Apr 2024 17:55:11 +0200
Subject: [PATCH] [libc++][CI] Removes clang-tidy references.
The clang-tidy selection has been made automatic recently so this is not
longer needed.
Thanks to Louis for spotting this.
---
.github/workflows/libcxx-build-and-test.yaml | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index 1e9367732e5911..44a3d79c72c0ac 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -61,12 +61,10 @@ jobs:
]
cc: [ 'clang-19' ]
cxx: [ 'clang++-19' ]
- clang_tidy: [ 'ON' ]
include:
- config: 'generic-gcc'
cc: 'gcc-13'
cxx: 'g++-13'
- clang_tidy: 'OFF'
steps:
- uses: actions/checkout at v4
- name: ${{ matrix.config }}.${{ matrix.cxx }}
@@ -74,7 +72,6 @@ jobs:
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
- ENABLE_CLANG_TIDY: ${{ matrix.clang_tidy }}
- uses: actions/upload-artifact at 26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
if: always()
with:
@@ -102,20 +99,16 @@ jobs:
]
cc: [ 'clang-19' ]
cxx: [ 'clang++-19' ]
- clang_tidy: [ 'ON' ]
include:
- config: 'generic-gcc-cxx11'
cc: 'gcc-13'
cxx: 'g++-13'
- clang_tidy: 'OFF'
- config: 'generic-cxx23'
cc: 'clang-17'
cxx: 'clang++-17'
- clang_tidy: 'OFF'
- config: 'generic-cxx26'
cc: 'clang-18'
cxx: 'clang++-18'
- clang_tidy: 'ON'
steps:
- uses: actions/checkout at v4
- name: ${{ matrix.config }}
@@ -123,7 +116,6 @@ jobs:
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
- ENABLE_CLANG_TIDY: ${{ matrix.clang_tidy }}
- uses: actions/upload-artifact at 26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
if: always() # Upload artifacts even if the build or test suite fails
with:
@@ -188,7 +180,6 @@ jobs:
env:
CC: clang-19
CXX: clang++-19
- ENABLE_CLANG_TIDY: "OFF"
- uses: actions/upload-artifact at 26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
if: always()
with:
More information about the llvm-commits
mailing list