forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
134 lines (128 loc) · 4.54 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: LSIF
on:
- push
jobs:
lsif-go:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
container: sourcegraph/lsif-go
steps:
- uses: actions/checkout@v1
- name: Generate LSIF data
run: lsif-go
- name: Upload LSIF data
run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}
lsif-tsc-web:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
container: sourcegraph/lsif-node
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn --ignore-engines --ignore-scripts
- name: Generate
run: ./node_modules/.bin/gulp generate
- name: Generate LSIF data
working-directory: web/
run: lsif-tsc -p .
- name: Upload LSIF data
working-directory: web/
run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}
lsif-tsc-shared:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
container: sourcegraph/lsif-node
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn --ignore-engines --ignore-scripts
- name: Generate
run: ./node_modules/.bin/gulp generate
- name: Generate LSIF data
working-directory: shared/
run: lsif-tsc -p .
- name: Upload LSIF data
working-directory: shared/
run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}
lsif-tsc-browser:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
container: sourcegraph/lsif-node
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn --ignore-engines --ignore-scripts
- name: Generate
run: ./node_modules/.bin/gulp generate
- name: Generate LSIF data
working-directory: browser/
run: lsif-tsc -p .
- name: Upload LSIF data
working-directory: browser/
run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}
lsif-eslint-web:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
container: sourcegraph/lsif-node
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn --ignore-engines --ignore-scripts
- name: Generate
run: ./node_modules/.bin/gulp generate
- name: Build TypeScript
run: yarn run --ignore-engines build-ts
- name: Generate LSIF data
working-directory: web/
run: yarn eslint -f lsif -o dump.lsif
- name: Upload LSIF data
working-directory: web/
run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}
lsif-eslint-shared:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
container: sourcegraph/lsif-node
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn --ignore-engines --ignore-scripts
- name: Generate
run: ./node_modules/.bin/gulp generate
- name: Build TypeScript
run: yarn run --ignore-engines build-ts
- name: Generate LSIF data
working-directory: shared/
run: yarn eslint -f lsif -o dump.lsif
- name: Upload LSIF data
working-directory: shared/
run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}
lsif-eslint-browser:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
container: sourcegraph/lsif-node
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
run: apk --no-cache add python g++ make git
- name: Install dependencies
run: yarn --ignore-engines --ignore-scripts
- name: Generate
run: ./node_modules/.bin/gulp generate
- name: Build TypeScript
run: yarn run --ignore-engines build-ts
- name: Generate LSIF data
working-directory: browser/
run: yarn eslint -f lsif -o dump.lsif
- name: Upload LSIF data
working-directory: browser/
run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}