Skip to content

Commit 9f2e185

Browse files
authoredFeb 23, 2024··
Merge pull request #71 from sourcegraph/nsc/lsifgo-to-scipgo
chore: use scip-go instead of lsif-go for precise indexing in CI
2 parents 1b4d09c + 78610d9 commit 9f2e185

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed
 

‎.github/workflows/lsif.yml

-13
This file was deleted.

‎.github/workflows/scip.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: SCIP
2+
'on':
3+
- push
4+
jobs:
5+
scip-go:
6+
runs-on: ubuntu-latest
7+
container: sourcegraph/scip-go
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Get src-cli
11+
run: curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o /usr/local/bin/src;
12+
chmod +x /usr/local/bin/src
13+
- name: Set directory to safe for git
14+
run: git config --global --add safe.directory $GITHUB_WORKSPACE
15+
- name: Generate SCIP data
16+
run: scip-go
17+
- name: Upload SCIP data
18+
run: src code-intel upload -github-token=${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.