diff options
author | Joe Chen <jc@unknwon.io> | 2023-05-09 09:13:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 09:13:02 -0400 |
commit | 167cdb09e371e3820b6f87d12bdb8a573c88897b (patch) | |
tree | ec55cd622fb805cb6bdb0f44c2b280eb9e6a5b05 /.github/workflows/scip.yml | |
parent | ada10834627e858df22accd383a1402c62310821 (diff) |
chore: generate SCIP instead of LSIF (#7445)
Diffstat (limited to '.github/workflows/scip.yml')
-rw-r--r-- | .github/workflows/scip.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/.github/workflows/scip.yml b/.github/workflows/scip.yml new file mode 100644 index 00000000..0310cfb7 --- /dev/null +++ b/.github/workflows/scip.yml @@ -0,0 +1,38 @@ +name: SCIP +on: + push: + paths: + - '**.go' + - 'go.mod' + - '.github/workflows/scip.yml' +env: + GOPROXY: "https://proxy.golang.org" + +jobs: + scip-go: + if: github.repository == 'gogs/gogs' + runs-on: ubuntu-latest + container: sourcegraph/scip-go + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set directory to safe for git + run: git config --global --add safe.directory $GITHUB_WORKSPACE + - name: Get src-cli + run: | + curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o /usr/local/bin/src + chmod +x /usr/local/bin/src + - name: Generate SCIP data + run: scip-go --no-animation + - name: Upload SCIP data to sourcegraph.com + run: src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress -repo=github.com/gogs/gogs + env: + SRC_ENDPOINT: https://sourcegraph.com/ + - name: Upload SCIP data to S2 + run: src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress -repo=github.com/gogs/gogs + env: + SRC_ENDPOINT: https://sourcegraph.sourcegraph.com/ + - name: Upload SCIP data to cs.unknwon.dev + run: src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress -repo=github.com/gogs/gogs + env: + SRC_ENDPOINT: https://cs.unknwon.dev/ |