summaryrefslogtreecommitdiffstats
path: root/templates/feature/agl-ci-snapshot-features-nogfx
AgeCommit message (Expand)AuthorFilesLines
2019-07-24add markdown documentation for all machines and featuresStéphane Desneux1-0/+20
2019-06-10feature/agl-ci-*: include agl-pipewire instead of agl-audio-4a-frameworkGeorge Kiagiadakis1-1/+1
2018-11-22Add ptest to ci and snapshot buildsJan-Simon Möller1-1/+1
2018-07-28Introduce buildstat summary for CI buildsJan-Simon Möller1-1/+1
2018-07-12Enable agl-audio-4a-framework in CIJan-Simon Möller1-1/+1
2018-04-20Introduce meta-agl-profile-core and meta-agl-profile-graphicsJan-Simon Möller1-1/+1
2018-03-07Disable agl-ptest in snapshot build until dependency loop is fixedJan-Simon Möller1-1/+1
2018-03-06Remove sota and sdl from default feature listJan-Simon Möller1-1/+1
2017-10-14Add feature for enabling the YP ptest capabilitiesJan-Simon Möller1-1/+1
2017-04-28Remove sota from agl-ci-change-featuresJan-Simon Möller1-0/+1
class="s">"", // TODO currently not used SyncThingID: stID, } return b, nil } // Copy makes a real copy of BuilderConfig func (c *BuilderConfig) Copy(n BuilderConfig) { // TODO } func getLocalIP() (string, error) { addrs, err := net.InterfaceAddrs() if err != nil { return "", err } for _, address := range addrs { // check the address type and if it is not a loopback the display it if ipnet, ok := address.(*net.IPNet); ok && !ipnet.IP.IsLoopback() { if ipnet.IP.To4() != nil { return ipnet.IP.String(), nil } } } return "", errors.New("Cannot determined local IP") }