github.com/drone/runner-go@v1.12.0/manifest/platform.go (about) 1 // Copyright 2019 Drone.IO Inc. All rights reserved. 2 // Use of this source code is governed by the Polyform License 3 // that can be found in the LICENSE file. 4 5 package manifest 6 7 // Platform defines the target platform. 8 type Platform struct { 9 OS string `json:"os,omitempty"` 10 Arch string `json:"arch,omitempty"` 11 Variant string `json:"variant,omitempty"` 12 Version string `json:"version,omitempty"` 13 }