From 6f53883a23c5d854097ab93d3f93902d7a78ceea Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Wed, 26 Sep 2018 20:46:52 +0100 Subject: [PATCH] Attempt to fix go-junit-report path --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 879a6b2..e6db400 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,7 @@ test: image: "ai/test:go" script: - "go get -u github.com/jstemmer/go-junit-report" - - "go-test-runner ./... 2>&1 | go-junit-report > junit.xml" + - "go-test-runner ./... 2>&1 | $HOME/go/bin/go-junit-report > junit.xml" artifacts: reports: junit: junit.xml -- GitLab