Self-hosted
Snake CI runs on your own infrastructure.
Nothing is sent to cloud.
Your envrionment — your rules.
Self-hosted
Snake CI runs on your own infrastructure.
Nothing is sent to cloud.
Your envrionment — your rules.
Fast
Snake CI uses advanced caching & scheduling techniques.
Minimal delay between push and build.
Optimized for multi-stage pipelines.
Secure
Snake CI utilizes single-use private keys to access repositories.
Runners' access can be revoked at any time.
Easy
Snake CI pipelines are configured using YAML file.
The perfect balance between flexibility and simplicity.
Unlimited build minutes
Snake CI pricing is not based on a number of runners or build minutes.
Unlimited runners.
No hidden costs.
Windows
Snake CI supports Windows.
Runner can start pipelines and jobs without Docker.
Monitor your pipelines and jobs directly in the native Bitbucket interface. Real-time updates.
Enable or disable runners in the Bitbucket admin panel.
Manage environment variables in project or repository settings.
Analyze logs of job runs.
See relevant pipelines for any given Pull Request.
Host runner on your own infrastructure.
Use Docker Engine.
Start running jobs after executing a single command to enable a runner on your servers.
Thanks to exceptionally low footprint runner is able to run pipelines as soon as code is pushed.
Configure pipelines using YAML file inside your repository.
image: alpine
variables:
GO111MODULES: "off"
stages:
- "build"
build for mac:
stage: build
variables:
GOOS: "darwin"
commands:
- go build
build for linux:
stage: build
variables:
GOOS: "linux"
commands:
- go build
Free 30-days trial.