Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e078afbbe5 | ||
|
|
511331008e | ||
|
|
6fbbe0b23c | ||
|
|
b24a16edad |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@ assets/
|
|||||||
notes.txt
|
notes.txt
|
||||||
Test.png
|
Test.png
|
||||||
test.png
|
test.png
|
||||||
|
coverage.txt
|
||||||
@@ -1,11 +1,30 @@
|
|||||||
|
# This file is a template, and might need editing before it works on your project.
|
||||||
|
image: golang:latest
|
||||||
|
|
||||||
|
include:
|
||||||
|
- template: Security/License-Scanning.gitlab-ci.yml
|
||||||
|
|
||||||
|
variables:
|
||||||
|
# Please edit to your GitLab project
|
||||||
|
REPO_NAME: gitlab.com/Raum0x2A/nmslib
|
||||||
|
|
||||||
|
# The problem is that to be able to use go get, one needs to put
|
||||||
|
# the repository in the $GOPATH. So for example if your gitlab domain
|
||||||
|
# is gitlab.com, and that your repository is namespace/project, and
|
||||||
|
# the default GOPATH being /go, then you'd need to have your
|
||||||
|
# repository in /go/src/gitlab.com/namespace/project
|
||||||
|
# Thus, making a symbolic link corrects this.
|
||||||
|
before_script:
|
||||||
|
- mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
|
||||||
|
- ln -svf $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
|
||||||
|
- cd $GOPATH/src/$REPO_NAME
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- test
|
- test
|
||||||
|
|
||||||
test:
|
format:
|
||||||
stage: test
|
stage: test
|
||||||
image: golang:1.16.3
|
|
||||||
script:
|
script:
|
||||||
|
- go fmt $(go list ./...)
|
||||||
|
- go vet $(go list ./...)
|
||||||
- go test
|
- go test
|
||||||
only:
|
|
||||||
- master
|
|
||||||
- develop
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
[](https://gitlab.com/Raum0x2A/nmslib)
|
[](https://gitlab.com/Raum0x2A/nmslib)
|
||||||
[](https://gitlab.com/Raum0x2A/nmslib/-/tree/develop)
|
[](https://gitlab.com/Raum0x2A/nmslib/-/tree/develop)
|
||||||
[](https://gitlab.com/Raum0x2A/nmslib/-/releases/v1.0.1)
|
[](https://gitlab.com/Raum0x2A/nmslib/-/releases/v1.0.1)
|
||||||
|
[](https://goreportcard.com/report/gitlab.com/Raum0x2A/nmslib)
|
||||||
|
|
||||||
NMSlib is a GoLang package for dealing with converting Galactic coordinates to Portal codes and vice versa.
|
NMSlib is a GoLang package for dealing with converting Galactic coordinates to Portal codes and vice versa.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user