13144a08e4
* Avoid inefficient AString -> c_str() -> AString round trip * Avoid redundant string init expressions * Avoid unnecessary return, continue, etc. * Add .clang-format to help with clang-tidy fix-its * Avoid unnecessary passing by value * Avoid unnecessary local copying * Avoid copying in range-for loops * Avoid over-complicated boolean expressions * Some violations missed by my local clang-tidy * Allow unnecessary continue statements * Add brackets * Another expression missed locally * Move BindingsProcessor call into clang-tidy.sh and add space * Fix pushd not found error * Different grouping of CheckBlockInteractionRate
42 lines
935 B
YAML
42 lines
935 B
YAML
version: 2
|
|
jobs:
|
|
checkout_cuberite:
|
|
working_directory: ~/cuberite
|
|
docker: &cube_docker
|
|
- image: cuberite/docker-build-image:circle-ci
|
|
steps:
|
|
- checkout
|
|
- run: git submodule update --init
|
|
- persist_to_workspace:
|
|
root: ~/
|
|
paths:
|
|
- cuberite
|
|
|
|
check_basic_style:
|
|
working_directory: ~/cuberite/src
|
|
docker: *cube_docker
|
|
steps:
|
|
- attach_workspace: { at: ~/ }
|
|
- run: find . -name \*.cpp -or -name \*.h > AllFiles.lst
|
|
- run: lua CheckBasicStyle.lua
|
|
- run: cd Bindings && lua CheckBindingsDependencies.lua
|
|
|
|
clang-tidy:
|
|
working_directory: ~/cuberite
|
|
docker: *cube_docker
|
|
steps:
|
|
- attach_workspace: { at: ~/ }
|
|
- run: ./clang-tidy.sh -j 2
|
|
|
|
workflows:
|
|
version: 2
|
|
checks:
|
|
jobs:
|
|
- checkout_cuberite
|
|
- check_basic_style:
|
|
requires:
|
|
- checkout_cuberite
|
|
- clang-tidy:
|
|
requires:
|
|
- checkout_cuberite
|