From c87a7c8265db2851991b0d8b57521ed26da867a5 Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Wed, 2 Jun 2021 02:42:40 +0200
Subject: [PATCH] WIP: pipeline

---
 .gitlab-ci.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f67fb5c..dbb6357 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,9 +27,16 @@ image: $CI_REGISTRY_IMAGE
 
 stages:
   - setup
+  - testgo
   - test
   - deploy
 
+testgo:
+  tags: [ docker ]
+  stage: testgo
+  script:
+    - echo $GOPATH
+    - echo $PATH
 
 # Build a docker image in which tests for this repository can run
 build-testenv:
@@ -73,6 +80,7 @@ pages:
   #only:
     #- web
   script:
+    - export PATH=$PATH:$GOPATH/bin
     - GO111MODULE=on /usr/lib/go-1.15/bin/go get github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@v1.4.1
     - mkdir -p build
     - cd build
-- 
GitLab