From 470eaa3ddc9117fb340d688feae7b5a9e3a1e688 Mon Sep 17 00:00:00 2001
From: "Kali Kaneko (leap communications)" <kali@leap.se>
Date: Wed, 21 Nov 2018 22:16:49 +0100
Subject: [PATCH] [ci] setup gopath in /tmp/go

it turns out that "full path" is still a relative path, and therefore
not allowed as a GOPATH.
---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 72dd6688..a4fce2e7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -81,8 +81,8 @@ osx_installer:
   stage: build
   allow_failure: true
   variables:
-      GOPATH: $CI_PROJECT_DIR/go/
-      APP_PATH: $CI_PROJECT_DIR/go/src/0xacab.org/leap/bitmask-systray
+      GOPATH: /tmp/go/
+      APP_PATH: /tmp/go/src/0xacab.org/leap/bitmask-systray
   script:
     - git clone https://0xacab.org/leap/riseup_vpn
     - cd riseup_vpn
-- 
GitLab