diff --git a/.circleci/bazel.rc b/.circleci/bazel.rc deleted file mode 100644 index b5866269712c..000000000000 --- a/.circleci/bazel.rc +++ /dev/null @@ -1,19 +0,0 @@ -# Bazel configuration that will be copied to /etc/bazel.bazelrc in CircleCI containers. -# This allows us adding specific configuration flags for builds within CircleCI. -# See more: https://docs.bazel.build/versions/master/user-manual.html#where-are-the-bazelrc-files - -# Print all enabled Bazel flags in CI mode. This makes it easier to debug and reproduce -# Bazel issues that show up on CircleCI. -common --announce_rc - -# Save downloaded repositories in a location that can be cached by CircleCI. This helps us -# speeding up the analysis time significantly with Bazel managed node dependencies on the CI. -build --repository_cache=/home/circleci/bazel_repository_cache - -# Workaround https://github.com/bazelbuild/bazel/issues/3645. Bazel doesn't calculate the -# memory ceiling correctly when running under Docker. Limit Bazel to consuming resources that -# fit in CircleCI "xlarge" class. https://circleci.com/docs/2.0/configuration-reference/#resource_class -# Note that we use less than the available RAM as bazel only estimates memory for actions -# and we don't want to accidentally run out of memory. -build --local_ram_resources=14336 -build --local_cpu_resources=8 diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 9454be12fd03..000000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,16 +0,0 @@ -# This config is remaining in place to prevent pull requests failing because of CircleCI config missing. - -version: 2.1 - -jobs: - pass: - docker: - - image: cimg/base:2022.05 - steps: - - run: echo "This too shall pass (always)" - -workflows: - version: 2 - default_workflow: - jobs: - - pass