curl runs in many different environments, so every change is run against a large number of test suites.
Every pull request is verified for each of the following:
If the pull-request fails one of these tests, it shows up as a red X and you are expected to fix the problem. If you do not understand what the issue is or have other problems to fix the complaint, just ask and other project members can likely help out.
Consider the following table while looking at pull request failures:
| CI platform as shown in PR | State | What to look at next |
|---|---|---|
| Linux / macOS / Windows / ... | stable | all errors and failures |
| Fuzzer | stable | fuzzing results |
| Code analyzers | stable | new findings |
| checkdocs / checksrc / dist / ... | stable | all errors and failures |
| AppVeyor | stable | all errors and failures |
| buildbot/curl_Schannel ... | stable | all errors and failures |
| curl.curl (linux ...) | stable | all errors and failures |
Sometimes the tests fail or run slowly due to a dependency service temporarily having issues, for example package downloads, or virtualized (non-native) environments. Sometimes a flaky failed test may occur in any jobs.
Windows jobs have a number of flaky issues, most often, these:
In these cases you can just try to update your pull requests to rerun the tests later as described below.
A detailed overview of test runs and results can be found on Test Clutch.
Here are the different CI environments that are currently in use, and how they are configured:
GitHub Actions runs the following tests:
These are each configured in different files in .github/workflows.
AppVeyor runs a variety of different Windows builds, with different compilation options.
As of October 2025 @bagder, @mback2k, @jay, @vszakats, @dfandrich and @danielgustafsson have administrator access to the AppVeyor CI environment. Additional admins/group members can be added on request.
The tests are configured in appveyor.yml.
Circle CI runs a basic Linux test suite on Ubuntu for both x86 and ARM processors. This is configured in .circleci/config.yml.
You can view the full list of CI jobs on Circle CI's website.
@bagder has access to edit the “Project Settings” on that page. Additional admins/group members can be added on request.