12 lines
282 B
YAML
12 lines
282 B
YAML
|
|
kind: pipeline
|
||
|
|
type: docker
|
||
|
|
name: default
|
||
|
|
|
||
|
|
steps:
|
||
|
|
- name: build
|
||
|
|
image: golang:latest
|
||
|
|
environment:
|
||
|
|
GO111MODULE: on
|
||
|
|
GOPROXY: https://goproxy.cn,direct
|
||
|
|
commands:
|
||
|
|
- go build -tags "custom,inputs.cl_kafka_consumer,outputs.influxdb_v2,parsers.phasor_binary" ./cmd/telegraf
|