-
-
Notifications
You must be signed in to change notification settings - Fork 663
53 lines (50 loc) · 1.11 KB
/
systemTests.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
name: System tests
on:
push:
branches:
- master
- beta
- rc
- try-**
- release-**
- githubActions # To be removed
pull_request:
branches:
- master
- beta
- rc
- try-**
- release-**
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
if: $GITHUB_EVENT_NAME == 'pull_request'
pullRequestNumber: ${{ github.event.number }}
jobs:
systemTests:
runs-on: windows-latest
defaults:
run:
shell: cmd
steps:
- name: Checkout NVDA
uses: actions/checkout@v4
with:
submodules: true
- name: Build NVDA
uses: ./nvdaBuilder
- name: Run launcher
run: scons launcher version=%version% --all-cores
- name: Install NVDA
run: powershell.exe ci/scripts/installNVDA.ps1
- name: Run system tests
run: powershell.exe ci/scripts/tests/systemTests.ps1
- name: Upload artifact
id: uploadArtifact
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: System tests results
path: testOutput/system