|
55 | 55 | darwinArchs = []string{"amd64", "arm64"} |
56 | 56 | k8sArchs = []string{"amd64", "arm64", "ppc64le", "riscv64", "s390x"} |
57 | 57 | ebpfProfilerArchs = []string{"amd64"} |
58 | | - ocbArchs = []string{"amd64", "arm64", "ppc64le"} |
| 58 | + ocbArchs = []string{"amd64", "arm64", "ppc64le", "riscv64"} |
| 59 | + opAmpArchs = []string{"amd64", "arm64", "ppc64le"} |
59 | 60 |
|
60 | 61 | imageRepos = []string{dockerHub, ghcr} |
61 | 62 |
|
@@ -217,15 +218,15 @@ var ( |
217 | 218 | // OpAMP Supervisor binary |
218 | 219 | opampDist = newDistributionBuilder(opampBinary).WithConfigFunc(func(d *distribution) { |
219 | 220 | d.buildConfigs = []buildConfig{ |
220 | | - &fullBuildConfig{targetOS: "linux", targetArch: ocbArchs, binaryName: "opampsupervisor"}, |
| 221 | + &fullBuildConfig{targetOS: "linux", targetArch: opAmpArchs, binaryName: "opampsupervisor"}, |
221 | 222 | &fullBuildConfig{targetOS: "darwin", targetArch: darwinArchs, binaryName: "opampsupervisor"}, |
222 | 223 | &fullBuildConfig{targetOS: "windows", targetArch: []string{"amd64"}, binaryName: "opampsupervisor"}, |
223 | 224 | } |
224 | 225 | d.containerImages = slices.Concat( |
225 | | - newContainerImages(d.name, "linux", ocbArchs, containerImageOptions{binaryRelease: true}), |
| 226 | + newContainerImages(d.name, "linux", opAmpArchs, containerImageOptions{binaryRelease: true}), |
226 | 227 | ) |
227 | 228 | d.containerImageManifests = slices.Concat( |
228 | | - newContainerImageManifests(d.name, "linux", ocbArchs, containerImageOptions{binaryRelease: true}), |
| 229 | + newContainerImageManifests(d.name, "linux", opAmpArchs, containerImageOptions{binaryRelease: true}), |
229 | 230 | ) |
230 | 231 | d.ldFlags = "-s -w -X github.com/open-telemetry/opentelemetry-collector-contrib/cmd/opampsupervisor/internal.version={{ .Version }}" |
231 | 232 | }).WithBinaryPackagingDefaults(). |
|
0 commit comments