-
Notifications
You must be signed in to change notification settings - Fork 44
Description
🧰 Task
From Circle CI email
Hi,
We've introduced blobless checkout - starting November 3rd, we'll begin gradually rolling out blobless checkout as the default checkout method.
Most builds will continue working without changes with blobless checkout. However, you need to take action if your builds require access to historical file contents. For example, tools like Sonar (SonarQube, SonarCloud), Sentry, some coverage or security scanning tools, and custom scripts that rely on git blame, git diff, or git config commands may require full checkout.
To opt into blobless checkout immediately, or to test compatibility, edit your config to use the “blobless” method.
steps:
- checkout:
method: bloblessIf your CircleCI job fails, or you prefer to keep the current checkout behavior, edit your config to use the “full” method.
steps:
- checkout:
method: fullIf you do nothing and your builds break after November 3rd, you will be able to fix them by editing your config to use the "full" method.