A lightweight golang CI/CD tools, you only need write a simple config, it will clone, build, test, deploy
{
"get_list":[
"github.com/asaskevich/govalidator"
],
"zip_list":[
"conf"
],
"after_script":"echo hello",
"before_script":"pwd"
}
- Support Gitlab, Github(application/json) webhook
- Only need very small memory and cpu, it can run on every Linux host
- You only need to start it ,it will get the env auto.
- The simple config, if you want, you don't need to write it.
- Auto clone, buil, test, clean, tar
- Support after script and before script, it will run on the project path
- Support REST API
- Every build will be saved
- go get github.com/astaxie/beego go get github.com/mattn/go-sqlite3 go get github.com/satori/go.uuid
- GOPATH,GOROOT,GIT
- Download solo-ci binary
- Use REST API new a ci project
- Write a config and configure your webhook
- push!
- The Build will save at workspace dir.
- go-sqlite3 requires gcc pre-installed. use "sudo apt-get install build-essential" to install gcc if necessary
Method | Url | Params | Description |
---|---|---|---|
POST | http://your-ip:13233/v1/solohook/:project_id | - project_id(path) | Run Webhook |
POST | http://your-ip:13233/v1/project | - name(form) | New a project |
- type(form, gitlab or github or bitbucket) | |||
- url(form) | |||
- path(form,the position of solo-ci.json) | |||
- branch(form) | |||
- secret_token(form,not necessary) | |||
- main_path(form,the position of main.go) | |||
DELETE | http://your-ip:13233/v1/project/:project_id | - project_id(path) | Delete project |
PUT | http://your-ip:13233/v1/project/:project_id | - project_id(path) | Update Project |
- name(form) | |||
- type(form, gitlab or github) | |||
- url(form) | |||
- path(form,the position of solo-ci.json) | |||
- branch(form) | |||
- secret_token(form,not necessary) | |||
GET | http://your-ip:13233/v1/project/:project_id | - project_id(path) | Get Project Info |
GET | http://your-ip:13233/v1/project | - project_id(path) | Get project list |
- page (default 0) | |||
- pageSize(default 20) |
- get_list:the go get list
- zip_list:the file you want to tar
- before_script:it will run before build
- after_script:it will run after build
If you don't want to write a config, you can write a blank config.
{
}
- Support Web GUI