From 62e95745ac02e8f849f9f99dce08280e96c55bed Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Tue, 15 Jun 2021 09:00:02 +0000 Subject: Migrate off CircleCI to Jenkins (#5230) * Add Jenkinsfile * cd src * Escape wildcards * Refactor stages * Remove CircleCI junk * Make clang-tidy do something * updated regex to include only the files in the base src directory * fixed errors displayed by new clang tidy version * adjust clang core count to actual count * Update README with new Jenkins build Co-authored-by: 12xx12 <44411062+12xx12@users.noreply.github.com> --- .circleci/config.yml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .circleci/config.yml (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 11be687a4..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,41 +0,0 @@ -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 -- cgit v1.2.3