forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (86 loc) · 2.52 KB
/
lsif.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: LSIF
on:
- push
jobs:
lsif-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Generate LSIF data
uses: sourcegraph/lsif-go-action@master
with:
verbose: "true"
- name: Upload LSIF data
uses: sourcegraph/lsif-upload-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
lsif-web:
runs-on: ubuntu-latest
container: node:13.8.0-alpine3.10
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn
- name: Generate LSIF data
uses: sourcegraph/lsif-node-action@master
with:
project_root: web
- name: Upload LSIF data
uses: sourcegraph/lsif-upload-action@master
with:
root: web
github_token: ${{ secrets.GITHUB_TOKEN }}
lsif-lsif:
runs-on: ubuntu-latest
container: node:13.8.0-alpine3.10
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: yarn --cwd lsif
- name: Generate LSIF data
uses: sourcegraph/lsif-node-action@master
with:
project_root: lsif
- name: Upload LSIF data
uses: sourcegraph/lsif-upload-action@master
with:
root: lsif
github_token: ${{ secrets.GITHUB_TOKEN }}
lsif-shared:
runs-on: ubuntu-latest
container: node:13.8.0-alpine3.10
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn
- name: Generate LSIF data
uses: sourcegraph/lsif-node-action@master
with:
project_root: shared
- name: Upload LSIF data
uses: sourcegraph/lsif-upload-action@master
with:
root: shared
github_token: ${{ secrets.GITHUB_TOKEN }}
lsif-browser:
runs-on: ubuntu-latest
container: node:13.8.0-alpine3.10
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn
- name: Generate LSIF data
uses: sourcegraph/lsif-node-action@master
with:
project_root: browser
- name: Upload LSIF data
uses: sourcegraph/lsif-upload-action@master
with:
root: browser
github_token: ${{ secrets.GITHUB_TOKEN }}