-
Notifications
You must be signed in to change notification settings - Fork 454
78 lines (59 loc) · 1.86 KB
/
ci-main.win.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
name: CI (Windows)
on:
push:
branches: [ main, 'release/**' ]
pull_request:
branches: [ main, 'release/**' ]
jobs:
build:
runs-on: windows-2019
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup LCOV
uses: hrishikesh-kadam/setup-lcov@v1
- name: Setup Node environment
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Build the extension
run: yarn compile-production
- name: Lint
run: yarn lint
# The cmake server mode has been removed since CMake 3.20
- name: Install CMake/Ninja
uses: lukka/[email protected]
with:
cmakeVersion: 3.18.3
ninjaVersion: 1.10.1
- name: Build fake compilers for tests
uses: urkle/[email protected]
with:
source-dir: ${{ github.workspace }}/test/fakeOutputGenerator
configure-options: -DCMAKE_INSTALL_PREFIX:STRING=${{ github.workspace }}/test/fakebin
install-build: true
- name: Run backend tests
run: yarn backendTests
- name: Run smoke tests
run: yarn smokeTests
- name: Run unit tests
run: yarn unitTests
- name: Run integration tests
run: yarn integrationTests
- name: Run successful-build test
run: yarn endToEndTestsSuccessfulBuild
- name: Run single root test
run: yarn endToEndTestsSingleRoot
- name: Run multi root test
run: yarn endToEndTestsMultiRoot
- name: Upload test logs if tests failed
if: failure()
uses: actions/upload-artifact@v3
with:
name: TestLogs
path: test/**/log.txt
if-no-files-found: warn