Remove extraneous ln -s

This commit is contained in:
Gareth @ BrassHornComms 2018-10-15 21:00:39 +01:00 提交者 Gogs
父節點 1001dbb3fe
當前提交 0ee32540f8
共有 1 個檔案被更改,包括 3 行新增3 行删除

查看文件

@ -11,7 +11,7 @@ test-server:
stage: test
script:
- mkdir /go/src/cwtch.im
- ln -s /builds/BrassHornComms/cwtch /go/src/cwtch.im/cwtch
#- ln -s /builds/BrassHornComms/cwtch /go/src/cwtch.im/cwtch
- cd /go/src/cwtch.im/cwtch/server/app/
- go get
- go tool vet -composites=false -shadow=true *.go
@ -21,12 +21,12 @@ test-client:
stage: test
script:
- mkdir /go/src/cwtch.im
- ln -s /builds/BrassHornComms/cwtch /go/src/cwtch.im/cwtch
#- ln -s /builds/BrassHornComms/cwtch /go/src/cwtch.im/cwtch
- cd /go/src/cwtch.im/cwtch/app/cli/
- go get
- go tool vet -composites=false -shadow=true *.go
- go test
# We don't really care about the client here but it's useful to know what;s
# We don't really care about the client here but it's useful to know what's
# happening on t'other side of the coin
allow_failure: true