From b32bd9918d43f3a2b4f7556e07092416be80e813 Mon Sep 17 00:00:00 2001 From: Noah S-C Date: Fri, 23 Feb 2024 13:45:53 +0000 Subject: [PATCH] chore: use scip-go instead of lsif-go for precise indexing in CI --- .github/workflows/{lsif-go.yml => scip-go.yml} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{lsif-go.yml => scip-go.yml} (57%) diff --git a/.github/workflows/lsif-go.yml b/.github/workflows/scip-go.yml similarity index 57% rename from .github/workflows/lsif-go.yml rename to .github/workflows/scip-go.yml index a759c77..b37aa07 100644 --- a/.github/workflows/lsif-go.yml +++ b/.github/workflows/scip-go.yml @@ -3,14 +3,14 @@ on: - push jobs: - lsif-go: + scip-go: runs-on: ubuntu-latest - container: sourcegraph/lsif-go:latest + container: sourcegraph/scip-go:latest steps: - uses: actions/checkout@v1 - - name: Generate LSIF data - run: lsif-go - - name: Upload LSIF data + - name: Generate SCIP data + run: scip-go + - name: Upload SCIP data # this will upload to Sourcegraph.com, you may need to substitute a different command. # by default, we ignore failures to avoid disrupting CI pipelines with non-critical errors. - run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }} -ignore-upload-failure + run: src code-intel upload -github-token=${{ secrets.GITHUB_TOKEN }} -ignore-upload-failure