-
Notifications
You must be signed in to change notification settings - Fork 226
226 lines (201 loc) · 6.07 KB
/
main.yml
File metadata and controls
226 lines (201 loc) · 6.07 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
name: Build Extension
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install dependencies
working-directory: extensions/ql-vscode
run: |
npm install
env:
NODE_OPTIONS: --openssl-legacy-provider
shell: bash
- name: Build
working-directory: extensions/ql-vscode
env:
APP_INSIGHTS_KEY: '${{ secrets.APP_INSIGHTS_KEY }}'
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm run build
shell: bash
- name: Prepare artifacts
if: matrix.os == 'ubuntu-latest'
run: |
mkdir artifacts
cp dist/*.vsix artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v2
if: matrix.os == 'ubuntu-latest'
with:
name: vscode-codeql-extension
path: artifacts
find-nightly:
name: Find Nightly Release
runs-on: ubuntu-latest
outputs:
url: ${{ steps.get-url.outputs.nightly-url }}
steps:
- name: Get Nightly Release URL
id: get-url
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
shell: bash
# This workflow step gets an unstable testing version of the CodeQL CLI. It should not be used outside of these tests.
run: |
LATEST=`gh api repos/dsp-testing/codeql-cli-nightlies/releases --jq '.[].tag_name' --method GET --raw-field 'per_page=1'`
echo "::set-output name=nightly-url::https://github.com/dsp-testing/codeql-cli-nightlies/releases/download/$LATEST"
test:
name: Test
runs-on: ${{ matrix.os }}
needs: [find-nightly]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install dependencies
shell: bash
working-directory: extensions/ql-vscode
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm install
- name: Build
working-directory: extensions/ql-vscode
shell: bash
env:
NODE_OPTIONS: --openssl-legacy-provider
APP_INSIGHTS_KEY: '${{ secrets.APP_INSIGHTS_KEY }}'
run: |
npm run build
- name: Lint
shell: bash
working-directory: extensions/ql-vscode
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm run lint
- name: Run unit tests (Linux)
working-directory: extensions/ql-vscode
shell: bash
if: matrix.os == 'ubuntu-latest'
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm run test
- name: Run unit tests (Windows)
if: matrix.os == 'windows-latest'
shell: bash
env:
NODE_OPTIONS: --openssl-legacy-provider
working-directory: extensions/ql-vscode
run: |
npm run test
- name: Run integration tests (Linux)
if: matrix.os == 'ubuntu-latest'
shell: bash
working-directory: extensions/ql-vscode
env:
NODE_OPTIONS: --openssl-legacy-provider
VSCODE_CODEQL_GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
run: |
sudo apt-get install xvfb
/usr/bin/xvfb-run npm run integration
- name: Run integration tests (Windows)
if: matrix.os == 'windows-latest'
shell: bash
working-directory: extensions/ql-vscode
run: |
npm run integration
cli-test:
name: CLI Test
runs-on: ${{ matrix.os }}
needs: [find-nightly]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
version: ['v2.3.3', 'v2.4.6', 'v2.5.9', 'v2.6.3', 'v2.7.6', 'v2.8.5', 'v2.9.3', 'nightly']
env:
CLI_VERSION: ${{ matrix.version }}
NIGHTLY_URL: ${{ needs.find-nightly.outputs.url }}
TEST_CODEQL_PATH: '${{ github.workspace }}/codeql'
steps:
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
working-directory: extensions/ql-vscode
shell: bash
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm install
- name: Build
working-directory: extensions/ql-vscode
shell: bash
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm run build
- name: Decide on ref of CodeQL repo
id: choose-ref
shell: bash
run: |
if [[ "${{ matrix.version }}" == "nightly" ]]
then
REF="codeql-cli/latest"
elif [[ "${{ matrix.version }}" == "v2.2.6" || "${{ matrix.version }}" == "v2.3.3" ]]
then
REF="codeql-cli/v2.4.5"
else
REF="codeql-cli/${{ matrix.version }}"
fi
echo "::set-output name=ref::$REF"
- name: Checkout QL
uses: actions/checkout@v2
with:
repository: github/codeql
ref: ${{ steps.choose-ref.outputs.ref }}
path: codeql
- name: Run CLI tests (Linux)
working-directory: extensions/ql-vscode
if: matrix.os == 'ubuntu-latest'
shell: bash
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
/usr/bin/xvfb-run npm run cli-integration
- name: Run CLI tests (Windows)
working-directory: extensions/ql-vscode
if: matrix.os == 'windows-latest'
shell: bash
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm run cli-integration