drnf593779 2019-07-26 20:57
浏览 120

在jenkins管道上使用容器运行go2xunit

I am trying to running tests on Jenkinspipeline within a container. where its unable to find one of the binaries /bin/sh: line 2: go2xunit: command not found

Snippet of jenkins test stage :

    stage('Tests') {

  steps {
    // NOTE: you must include '|| :' so a failed test does not prevent the
    // junit XML collection from running; any failed tests in the XML will
    // mark the build as UNSTABLE and indicate failed tests in GHE and jenkins
    sh 'make -f Makefile.release test'
    junit 'test/*xml'
  }
}

Makefile.release

.PHONY: test
test:
    @docker run -it -v test:/src/test --rm ${BUILDER_TAG} \
            2>&1 go test  -v -short ./... | \
            go2xunit -output test/test1.xml

Dockerfile

FROM golang:1.12.7-alpine AS builder

#Disable cgo
ENV CGO_ENABLED=0

WORKDIR /src

# Packages required for project build and test
RUN apk add --no-cache git make
RUN go get \
        github.com/AlekSi/gocov-xml \
        golang.org/x/lint/golint \
        github.com/axw/gocov \
        github.com/tebeka/go2xunit \
        github.com/wadey/gocovmerge

# These layers are only re-built when Go modules are updated
COPY go.mod go.sum ./
RUN go mod download


# This layer is rebuilt when a file changes in the project directory
COPY . ./

RUN go install ./...

Where if I give the same commands on my local machine. Or if I run those commands from within the container it works well.

 C02X37E2JG5J:push3 auser03$ docker run -it d919c2f58e74 /bin/sh
/src # make -f makefile.release test

What could I be missing here.

  • 写回答

1条回答 默认 最新

  • duanji5746 2019-08-23 13:33
    关注

    You have to download go2x as direct dependency before running 'go2xunit' command.

    go get github.com/tebeka/go2xunit
    go test -v .\... | $(GOPATH)/bin/go2xunit -output test_report.xml
    
    评论

报告相同问题?

悬赏问题

  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题