Popularity
4.7
Growing
Activity
0.0
Declining
56
3
45
Programming language: Go
License: MIT License
Tags:
Third-party APIs
Latest version: v0.3.0
circleci alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view circleci alternatives based on common mentions on social networks and blogs.
-
geo-golang
Go Library to access Google Maps, MapQuest, Nominatim, OpenCage, HERE, Bing, and Mapbox geocoding / reverse geocoding APIs. -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
go-tgbot
Pure Golang Telegram Bot API wrapper, generated from swagger file, session-based router and middleware. -
mixpanel
Mixpanel is a library for tracking events and sending Mixpanel profile updates to Mixpanel from your go applications. -
amazon-product-advertising-api
Go Client Library for Amazon Product Advertising API
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of circleci or a related project?
README
go-circleci
Go library for interacting with CircleCI's API. Supports all current API endpoints allowing you do do things like:
- Query for recent builds
- Get build details
- Retry builds
- Manipulate checkout keys, environment variables, and other settings for a project
The CircleCI HTTP API response schemas are not well documented so please file an issue if you run into something that doesn't match up.
Example usage:
package main
import (
"fmt"
"github.com/jszwedko/go-circleci"
)
func main() {
client := &circleci.Client{Token: "YOUR TOKEN"} // Token not required to query info for public projects
builds, _ := client.ListRecentBuildsForProject("jszwedko", "circleci-cli", "master", "", -1, 0)
for _, build := range builds {
fmt.Printf("%d: %s\n", build.BuildNum, build.Status)
}
}
For the CLI that uses this library (or to see more example usages), please see circleci-cli.
See GoDoc for API usage.
Feature requests and issues welcome!