Skip to content

Commit

Permalink
🔧 Add bugprone checks to clang-tidy checks
Browse files Browse the repository at this point in the history
- Bump version to 2.0.0
  • Loading branch information
Khalil Estell authored and kammce committed Sep 29, 2023
1 parent 0de66a7 commit 4e54555
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ jobs:
run: conan create .

- name: 📡 Sign into JFrog Artifactory
if: ${{ github.ref == 'refs/heads/main' }}
if: startsWith(github.ref, 'refs/tags/')
env:
API_KEY: ${{ secrets.JFROG_LIBHAL_TRUNK_API_KEY }}
JFROG_USER: ${{ secrets.JFROG_LIBHAL_TRUNK_USER }}
run: conan remote login -p $API_KEY libhal-trunk $JFROG_USER

- name: 🆙 Upload package to `libhal-trunk` repo
if: ${{ github.ref == 'refs/heads/main' }}
if: startsWith(github.ref, 'refs/tags/')
run: conan upload "libhal-cmake-util/*" --confirm -r=libhal-trunk

revoke:
Expand Down
2 changes: 1 addition & 1 deletion cmake/clang-tidy.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Checks: "-header-filter=.*,readability-identifier-naming,modernize-*,performance-*,-modernize-use-trailing-return-type,-checks=-*"
Checks: "-header-filter=.*,readability-identifier-naming,modernize-*,performance-*,bugprone-*,-modernize-use-trailing-return-type,-checks=-*"
WarningsAsErrors: "*"
UseColor: true
CheckOptions:
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class libhal_cmake_util_conan(ConanFile):
name = "libhal-cmake-util"
version = "1.2.0"
version = "2.0.0"
license = "Apache-2.0"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://libhal.github.io/libhal-armcortex"
Expand Down

0 comments on commit 4e54555

Please sign in to comment.