Skip to content

Commit

Permalink
fix: change kiwidb.yml ci (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexStocks authored Jan 6, 2025
2 parents 7a51044 + 21d6eaf commit de36c2f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pikiwidb.yml → .github/workflows/kiwidb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ jobs:
- name: Build
run: bash ./etc/script/ci/build.sh

- name: Add LLVM apt repository
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-13 main" | sudo tee /etc/apt/sources.list.d/llvm.list
sudo apt-get update
- name: Install clang-format-16
run: |
sudo apt-get install -y clang-format-16
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-16 100
- name: Verify clang-format version
run: clang-format --version

- name: Check Format
working-directory: ${{ github.workspace }}/build
run: make check-format
Expand Down

0 comments on commit de36c2f

Please sign in to comment.