🚀 TG4G
DirectoryDev ToolsCi/Cdcircleci.com
🔧 Dev Tools Ci/Cd 📍 HQ: United States
C

circleci.com

Overall Rating
★★★★⯨ 9.0/10
China Access
★★☆ Basically usable
Quick Check
Data source
ai_crawl · Last updated 2026-06-13

⚡ Score breakdown

5-dim weighted · /10
Performance25% 9.0
Value20% 9.0
China access20% 8.0
Reputation20% 6.8
Support15% 8.5

Dimension scores are derived from public data and fields; weighted into the composite. Reference only.

Editorial Highlights

Supports AI acceleration, offers a free allowance, and integrates with major Git platforms

In-Depth Review TG4G Review ·2026-05-31 · For reference only

One-line Overview

CircleCI is a cloud-based continuous integration and continuous delivery (CI/CD) platform from the U.S. company CircleCI. It helps development teams automate code builds, testing, and deployment. It is widely adopted because it supports highly parallel pipelines, integrates deeply with major Git platforms such as GitHub, Bitbucket, and GitLab, and has recently introduced AI acceleration features that can significantly reduce waiting time in CI/CD workflows.

Business Details

Founded in 2011 and headquartered in San Francisco, CircleCI is one of the leading players in the CI/CD market. Its core service is a cloud-hosted continuous integration and continuous delivery engine: developers push code to a Git repository, and CircleCI automatically pulls the code, runs tests, builds artifacts, and deploys to the target environment. It supports mainstream infrastructure such as Docker, Kubernetes, AWS, GCP, and Azure, and uses a customizable YAML configuration file, .circleci/config.yml, to define pipelines.

In terms of market position, CircleCI is often mentioned alongside Jenkins, GitLab CI/CD, and GitHub Actions as one of the four mainstream CI/CD solutions. It is especially popular with mid-to-large engineering teams and SaaS companies. Its customers include well-known companies such as Spotify, Coinbase, and Stripe, which value its high-concurrency execution, fine-grained resource control such as on-demand CPU/RAM allocation, and powerful caching mechanisms. The free allowance of 6000 build minutes per month also makes it affordable for individual developers and small teams to get started.

Who It’s For

  • Individual developers / open-source maintainers: The free tier is sufficient for small projects, especially Node.js, Python, and Go projects that require automated testing.
  • Small and mid-sized engineering teams, 5-50 people: Ideal for teams that want to set up CI/CD pipelines quickly without maintaining self-hosted solutions like Jenkins.
  • Enterprise development teams, 50+ people: Suitable for teams that need high-concurrency builds, multi-environment deployments, fine-grained access control, and are willing to pay for performance.
  • Speed-sensitive workflows: The AI acceleration feature can intelligently predict and cache dependencies, significantly reducing build time. This is useful for SaaS products with frequent iterations.

Not ideal for: financial or government projects with very strict data sovereignty requirements, since CircleCI stores data in the U.S. by default; or teams with extremely limited budgets, as usage is billed by the minute after the free allowance and may cost more than GitHub Actions.

Key Features and Highlights

  • AI acceleration, Smart Build Acceleration: Uses machine learning to predict build steps, automatically cache dependencies, and skip unnecessary tests. According to CircleCI, it can reduce build time by 40%.
  • Highly parallel pipelines: Supports running multiple jobs at the same time, with CPU, memory, and SSD resources assigned independently to each job. Suitable for running large test suites in parallel.
  • Native Docker/K8s support: Includes Docker Layer Caching, DLC, so base layers do not need to be pulled again for every image build. It also supports direct deployment to Kubernetes clusters.
  • Deep Git platform integration: Connects seamlessly with GitHub, Bitbucket, and GitLab, supporting PR status checks, branch-based triggers, and automatic rollbacks.
  • Fine-grained permissions and auditing: The enterprise edition supports SSO, team role management, and build log auditing, making it suitable for teams with strict compliance requirements.
  • Caching and artifact management: Automatically caches dependency directories such as node_modules and vendor/bundle, supports custom artifact storage, and can retain test reports, build outputs, and more.

Pricing Analysis

CircleCI’s pricing is in the mid-to-high range among similar products. It offers three plans:

  • Free: 6000 build minutes per month on Linux, 1 concurrent job, and up to 3 users. Suitable for individuals or very small projects.
  • Performance, pay as you go: Monthly fee is not publicly listed, but according to official documentation, it is billed by the minute. Linux builds cost about $0.006/minute, with 1-10 concurrent jobs and unlimited users. If you run 100,000 minutes per month, the monthly cost is about $600, slightly cheaper than GitHub Actions at $0.008/minute, but more expensive than GitLab CI/CD at $0.004/minute.
  • Scale, enterprise edition: Custom pricing, typically including dedicated SLA, private cloud deployment options, and advanced security features.

Hidden costs: Docker Layer Caching costs an additional $50/month; Windows/macOS build environments are billed by the minute, about $0.02/minute; storage beyond the free allowance, including artifacts and cache, is billed at $0.02/GB/month. Overall, if your team needs high concurrency and AI acceleration, the value is reasonable. But if you only need to run simple tests, GitHub Actions or GitLab CI/CD may be more cost-effective.

Using It from China

  • Network accessibility: CircleCI’s servers are mainly located in the U.S. by default. Direct connections from parts of China, such as Shanghai and Beijing, often have high latency of around 200-300ms, though API calls and Webhooks are generally usable. Pulling dependencies during builds, such as npm or pip packages, may be unstable due to the GFW. It is recommended to configure China-based mirrors in build scripts, such as Taobao npm or Tsinghua PyPI.
  • Payment methods: CircleCI officially supports international credit cards such as Visa, Mastercard, and American Express. It does not support Alipay or WeChat Pay. Enterprise plans can be paid by bank wire transfer, but this is inconvenient for many China-based users.
  • Need for VPN/proxy: Accessing the CircleCI website and Dashboard usually requires a stable proxy or VPN, as some ISPs may block access directly. Webhook triggers and build log viewing are generally usable, but timeouts may occur occasionally. Strong recommendation: Use Cloudflare Workers or a self-hosted reverse proxy as a relay, or consider domestic alternatives.
  • Invoices: CircleCI only provides English invoices in PDF format and cannot issue Chinese VAT invoices. Enterprise users should confirm reimbursement requirements with their finance team.
  • Domestic alternatives: If network or payment issues cannot be resolved, consider CODING, Tencent Cloud, Alibaba Cloud Yunxiao, or Huawei Cloud DevCloud. These support Chinese interfaces, domestic servers, RMB payments, and VAT invoices.

Pros and Cons

Pros:

  • ✅ AI acceleration can significantly reduce build time, especially for large projects.
  • ✅ Highly parallel execution and elastic resources, with automatic scaling based on workload.
  • ✅ Smooth integration with GitHub/Bitbucket, with instant PR status check feedback.
  • ✅ Free allowance, 6000 minutes/month, is friendly to open-source projects.
  • ✅ Rich caching and artifact management features reduce repeated downloads.

Cons:

  • ❌ Network access is unstable for users in China; accessing the Dashboard and pulling dependencies may require a proxy/VPN.
  • ❌ Pricing is relatively high, especially since Docker Layer Caching and macOS builds cost extra.
  • ❌ Does not support local Chinese payment methods, Alipay/WeChat Pay, and cannot issue Chinese invoices.
  • ❌ Official documentation and customer support are in English, with limited Chinese community resources.
  • ❌ YAML configuration has a relatively steep learning curve, and beginners can easily make mistakes.

Comparison with Similar Products

  • GitHub Actions: Naturally integrated with GitHub repositories, with a higher free allowance in some scenarios, 2000 minutes per month, and more free time for Windows/macOS. Pricing is slightly lower at $0.008/minute. Downsides: limited number of parallel jobs, only 20 in the free version, and its AI acceleration is less mature than CircleCI’s.
  • GitLab CI/CD: The self-hosted version is completely free, while the cloud-hosted version is relatively inexpensive at $0.004/minute. It supports SSO and audit logs. Downsides: lower parallel job limits and a less flexible caching mechanism than CircleCI.
  • Jenkins: Fully open source and free, deployable on any server, and highly customizable. Downsides: you need to maintain your own servers, plugin compatibility issues are common, and the learning curve is high. It is not ideal for teams looking for zero operations overhead.

Positioning difference: CircleCI is more like an “out-of-the-box high-performance CI/CD service,” suitable for teams willing to pay for speed and automation. GitHub Actions is best for teams deeply invested in the GitHub ecosystem. GitLab CI/CD suits self-hosted or budget-sensitive users. Jenkins is best for enterprises that need maximum customization.

Final Recommendation

Best-fit scenarios: If your team uses GitHub for code hosting, needs frequent builds and tests, such as in a microservices architecture or large monorepo, and is willing to pay for AI acceleration and parallel execution, CircleCI is worth prioritizing. It is recommended to try the free allowance for 1-2 weeks and focus on testing network latency and dependency download speed.

Not recommended for: If your team is in mainland China and does not have a stable proxy or relay setup, it is better to choose a domestic CI/CD platform such as CODING or Yunxiao to avoid productivity losses caused by network issues. Also, for small teams on a very tight budget, the free tiers of GitHub Actions or GitLab CI/CD may be more cost-effective.

Payment advice: The Performance plan is billed by the minute and is suitable for teams with fluctuating build volumes. The Scale plan is better for enterprises that need private deployment or SLA guarantees. Note: charges may apply automatically once the free allowance is used up, so it is recommended to set budget alerts.

⚠ This review is compiled from public sources and does not constitute a purchase recommendation. Verify all facts on the vendor's official site. Verify on circleci.com official site.

About this entry

circleci.com is an United States Dev Tools (Ci/Cd) provider. TG4G tracks its product information, an overall rating of 9.0/10, and a China-accessibility score of Workable. Click "Visit Official Site" to reach circleci.com directly.

Get Started

Price not disclosed
Visit circleci.com official site →
External link · prices subject to vendor site

Similar Providers (Top 5)

  • gocd.io
    CI/CD · United States · Rated 8.0 · CN ★★★
  • actuated.com
    Ci/Cd · United Kingdom · Rated 8.0 · CN ★★
    $150.00 / mo
  • agola.io
    Ci/Cd · 开源 · Rated 7.0 · CN ★★
  • topflashdeal.com
    Ci/Cd · United States · Rated 7.0 · CN ★★
  • cirruslabs.org
    CI/CD · United States · Rated 5.0 · CN ★★
View all Dev Tools →

Frequently Asked Questions

What is circleci.com?
circleci.com is a United States-based Dev Tools (Ci/Cd) provider. Supports AI acceleration, offers a free allowance, and integrates with major Git platforms.
Is circleci.com good? Is it worth it?
circleci.com scores 9.0/10 on TG4G — a strong rating, based in 美国. See the in-depth review below for pros, cons and China accessibility.
Is circleci.com usable in China?
circleci.com is basically usable in mainland China, though latency may vary by ISP and time of day; have a backup proxy ready. The provider is headquartered in United States and primarily serves overseas markets.
How do I sign up for circleci.com?
Visit the circleci.com official site to complete sign-up. Registration typically requires an email (Gmail/Outlook recommended) and a payment method. Most overseas services accept credit card / PayPal / crypto. See the "Visit Official Site" button on this page for the direct link.

Browse Other Categories

View the full directory →