diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2018-11-21 22:16:49 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2018-11-21 22:16:49 +0100 |
commit | 470eaa3ddc9117fb340d688feae7b5a9e3a1e688 (patch) | |
tree | 1d8322e3a44accb5c7b6efad88656e7cf48a3588 /.gitlab-ci.yml | |
parent | 8da4d12c39839462be2174c0e94a22e67a7e0572 (diff) |
[ci] setup gopath in /tmp/go
it turns out that "full path" is still a relative path, and therefore
not allowed as a GOPATH.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 72dd668..a4fce2e 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 |