19 lines
447 B
YAML
19 lines
447 B
YAML
include:
|
|
- component: $CI_SERVER_FQDN/go/components/golang@master
|
|
inputs:
|
|
build-mode: modules
|
|
|
|
go-build-test:
|
|
parallel:
|
|
matrix:
|
|
- GO_TARGET_OS: "linux"
|
|
GO_TARGET_ARCH: "amd64"
|
|
- GO_TARGET_OS: "linux"
|
|
GO_TARGET_ARCH: "arm64"
|
|
- GO_TARGET_OS: "darwin"
|
|
GO_TARGET_ARCH: "amd64"
|
|
tags:
|
|
- ${GO_TARGET_OS}-${GO_TARGET_ARCH}
|
|
# - GO_TARGET_OS: "windows"
|
|
# GO_TARGET_ARCH: "amd64"
|