diff options
author | Nick Thomas <nick@gitlab.com> | 2020-03-30 14:07:09 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2020-03-30 14:07:09 +0000 |
commit | bec09e4b86604128d259ae70c3d336700be4249e (patch) | |
tree | 447bb1901aabb6096fb9097da6c85f0ebabef5bb | |
parent | 6e4495c01509b20144b3b33d92a06f0a7a93e60a (diff) | |
parent | 1dc30c3ed2be37811dee0e3d62db71b056d0b038 (diff) | |
download | gitlab-shell-bec09e4b86604128d259ae70c3d336700be4249e.tar.gz |
Merge branch 'id-testing-code-navigation' into 'master'
Include code-navigation block to CI
See merge request gitlab-org/gitlab-shell!362
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 720108f..638f916 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -79,3 +79,18 @@ dependency_scanning: "registry.gitlab.com/gitlab-org/security-products/dependency-scanning:$SP_VERSION" /code artifacts: paths: [gl-dependency-scanning-report.json] + +code_navigation: + image: golang:1.14.0 + allow_failure: true + script: + - apt-get update && apt-get install -y ruby-full + - go get github.com/sourcegraph/lsif-go/cmd/lsif-go + - gem install lsif_parser + - lsif-go + - lsif_parser dump.lsif $PWD + - mv dump.lsif.tmp lsif + artifacts: + paths: + - lsif/ + |