Add a simple CI #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create Cache Timestamp | |
id: cache_timestamp | |
uses: nanzm/[email protected] | |
with: | |
format: 'YYYY-MM-DD-HH-mm-ss' | |
- name: Mount bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "/root/.cache/bazel" | |
key: bazelcache_test | |
- name: Test | |
run: | | |
bazel test --cxxopt=-std=c++23 ... | |
CodeFormatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get install clang-format-15 | |
go install github.com/bazelbuild/buildtools/buildifier@latest | |
echo "PATH=$PATH:$(go env GOPATH)/bin/" >> $GITHUB_ENV | |
- name: Run formatting style check | |
run: | | |
scripts/run-format.sh | |
git diff > /tmp/format-diff | |
if [ -s "/tmp/format-diff" ]; then | |
echo "Difference to optimal formatting" | |
cat /tmp/format-diff | |
echo | |
echo "=================== To Fix ===========================" | |
echo "Run scripts/run-format.sh" | |
echo "then" | |
echo " git commit -a --amend" | |
echo " git push -f" | |
exit 1 | |
fi | |
ClangTidy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get latest clang-tidy | |
run: | | |
sudo apt -qq -y update | |
#sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 15CF4D18AF4F7421 | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x ./llvm.sh | |
sudo ./llvm.sh 17 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get install clang-tidy-17 | |
- name: Build Compilation DB | |
run: | | |
scripts/make-compilation-db.sh |