我的golang项目依赖librd kafka
当我尝试运行go vet ./...
或go test ./...
从我的 jenkin 运行时,我收到以下错误。我相信这是因为我正在跑步./...
,但即使我不得不忽略供应商,我也不确定我应该尝试什么,go test $(go list ./... | grep -v /vendor/librdkafka)
但它没有帮助。
/usr/lib/gcc/x86_64-alpine-linux-musl/9.3.0/../../../../x86_64-alpine-linux-musl/bin/ld: /go/pkg/mod/gopkg.in/confluentinc/confluent-kafka-go.v1@v1.4.2/kafka/librdkafka/librdkafka_glibc_linux.a(rdkafka_mock_cgrp.o): in function `rd_kafka_mock_cgrp_member_add':
(.text+0x8e5): undefined reference to `__strndup'
/usr/lib/gcc/x86_64-alpine-linux-musl/9.3.0/../../../../x86_64-alpine-linux-musl/bin/ld: /go/pkg/mod/gopkg.in/confluentinc/confluent-kafka-go.v1@v1.4.2/kafka/librdkafka/librdkafka_glibc_linux.a(rdkafka_mock_cgrp.o): in function `rd_kafka_mock_cgrp_get':
(.text+0xd1e): undefined reference to `__strndup'
/usr/lib/gcc/x86_64-alpine-linux-musl/9.3.0/../../../../x86_64-alpine-linux-musl/bin/ld: (.text+0xd46): undefined reference to `__strndup'
/usr/lib/gcc/x86_64-alpine-linux-musl/9.3.0/../../../../x86_64-alpine-linux-musl/bin/ld: /go/pkg/mod/gopkg.in/confluentinc/confluent-kafka-go.v1@v1.4.2/kafka/librdkafka/librdkafka_glibc_linux.a(rdkafka_mock_cgrp.o): in function `rd_kafka_mcgrp_rebalance_timer_cb':
(.text+0x13dd): undefined reference to `__strndup'
我想知道如何在测试我的项目时绕过那个 gcc 错误
我的 Dockerfile :
FROM golang:1.14-alpine AS builder
WORKDIR /src
ENV CGO_ENABLED=0
RUN apk add --no-cache git make
RUN go get \
github.com/AlekSi/gocov-xml \
github.com/axw/gocov \
github.com/tebeka/go2xunit \
github.com/wadey/gocovmerge
COPY go.mod go.sum ./
RUN go get -d -v ./...
RUN go mod download
COPY . .
FROM test AS builder
ENV CGO_ENABLED=1
#this config is for lib rd kafka setup
RUN set -ex &&\
apk add --no-progress --no-cache \
gcc \
musl-dev
WORKDIR /src
RUN go install -tags musl ./...
我的詹金斯文件片段
stage("Test") {
agent {
dockerfile {
label 'docker'
additionalBuildArgs '--target test'
args '-v test:/src/test'
reuseNode true
}
}
steps {
parallel(
'Unit Test': {
sh "make ${makeArgs} test/unit-test"
},
Coverage: {
sh "make ${makeArgs} test/coverage"
},
Vet: {
sh "make ${makeArgs} test/vet"
}
)
}
post {
always {
junit 'test/*xml'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'test', reportFiles: 'coverage.html', reportName: 'Code Coverage Report'])
sh "make ${makeArgs} clean"
}
}
}