|
|
|
|
|
by ithkuil
1297 days ago
|
|
Yep. CI systems offer some extra features. If you don't use them there isn't really a lock in. From the top of my head: 1. Parallelization.
2. Capture of build artifacts, which can also be useful for logs of non-linear complex tests such as dependencies of e2e tests.
3. Secrets for release or artifact uploads to third party repos (e.g. docker repos)
4. Caching. There may be more. Once you sprinkle these things left and right in your CI config, it becomes hard to move to another, even if the bulk of the actual tests you run are just "make test" |
|