Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
EFanZh committed Jan 7, 2025
1 parent 091218c commit 3cb6b48
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- run: >-
cargo xtask coverage
--cmake-toolchain-file "$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake"
--llvm-version 14
--llvm-version 18
-o coverage/lcov.info
- uses: codecov/codecov-action@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/progress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install --no-install-recommends libfontconfig-dev
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
clippy:
runs-on: ${{ matrix.os }}
steps:
- if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get install --no-install-recommends libfontconfig-dev
- uses: actions/checkout@v4
- run: rustup update
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
Expand All @@ -28,6 +30,8 @@ jobs:
tests:
runs-on: ${{ matrix.os }}
steps:
- if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get install --no-install-recommends libfontconfig-dev
- uses: actions/checkout@v4
- run: rustup update
- run: cargo test --workspace
Expand Down
2 changes: 2 additions & 0 deletions c++/.clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ Checks: >-
-llvm-include-order,
-llvmlibc-callee-namespace,
-llvmlibc-implementation-in-namespace,
-llvmlibc-inline-function-decl,
-llvmlibc-restrict-system-libc-headers,
-misc-include-cleaner,
-misc-no-recursion,
-modernize-use-trailing-return-type,
-readability-convert-member-functions-to-static,
Expand Down

0 comments on commit 3cb6b48

Please sign in to comment.