忽略librd kafka中的测试

问题描述

我的golang项目取决于librd kafka

当我尝试从jenkin运行go vet ./...go test ./...时,出现以下错误。我相信这是由于我正在运行./...,但即使我不得不忽略供应商,我也不确定我应该尝试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 ./...

我的jenkinsfile代码

    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"
            }
        }
    }

解决方法

我只需要运行它-tags musl

go vet -tags musl ./...