This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitlab-ci.yml
181 lines (173 loc) · 6.5 KB
/
.gitlab-ci.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
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
# BSD 3-Clause License
#
# Copyright (c) 2024, Arm Limited
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
stages:
- build
- test
variables:
GIT_SUBMODULE_STRATEGY: recursive
PYTHON_PATH: C:\wenv\arm64\python\tools
MSBUILD_PATH: C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin
VSTEST_PATH: C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\TestPlatform\
LOCAL_CI_PATH: C:\ci
WINDOWSKIT_TOOLS_PATH: C:\Program Files (x86)\Windows Kits\10\Tools\10.0.22621.0\arm64
# CI machines are not yet setup to run this
# sast:
# stage: test
# include:
# - template: Security/SAST.gitlab-ci.yml
build:
stage: build
tags:
- win-arm64-builder
script:
- >
$env:PATH += ";$MSBUILD_PATH";
MSBuild /p:Configuration=Release /p:Platform=ARM64
artifacts:
paths:
- wperf/ARM64/Release/wperf.exe
- wperf-devgen/ARM64/Release/wperf-devgen.exe
- wperf-driver/ARM64/Release/wperf-driver
- wperf-driver/ARM64/Release/wperf-driver.cer
- wperf-test/ARM64/Release/wperf-test.dll
- wperf-driver/ARM64/Release/wperf-driver.pdb
- wperf-lib/wperf-lib.h
- wperf-lib/ARM64/Release/wperf-lib.dll
- wperf-lib/ARM64/Release/wperf-lib.lib
expire_in: 60 min
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
cpp_test_wperf:
stage: test
tags:
- win-arm64-builder
retry: 2
needs:
- job: build
artifacts: true
script:
- $env:PATH += ";$VSTEST_PATH"; vstest.console.arm64.exe .\wperf-test\ARM64\Release\wperf-test.dll --TestCaseFilter:Name!~"test_lib"
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
test_python:
stage: test
tags:
- win-arm64-tester
needs:
- job: build
artifacts: true
artifacts:
when: always
reports:
junit: test_result.xml
script:
- >
$env:PATH += ";$PYTHON_PATH";
python -m pip install -r .\wperf-scripts\requirements.txt;
$MPATH=$(pwd);cd $LOCAL_CI_PATH;mkdir $CI_JOB_ID; cd $MPATH;
cp -Recurse -Force .\wperf-scripts\tests c:\ci\$CI_JOB_ID;
cp wperf\ARM64\Release\wperf.exe $LOCAL_CI_PATH\$CI_JOB_ID\tests;
cd $LOCAL_CI_PATH\$CI_JOB_ID\tests;
$env:PATH += ";$LOCAL_CI_PATH\$CI_JOB_ID\tests";
python -m pytest --maxfail=1 --junitxml=$MPATH\test_result.xml;
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_LABELS =~ /(test_python)/i'
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
archive:
stage: build
tags:
- win-arm64-builder
needs:
- job: build
artifacts: true
script:
- >
mkdir release;
mkdir release/wperf-driver;
mkdir release/lib;
cp wperf/ARM64/Release/wperf.exe release;
cp wperf-driver/ARM64/Release/wperf-driver/* release/wperf-driver;
cp wperf-driver/ARM64/Release/wperf-driver.pdb release/wperf-driver;
cp wperf-devgen/ARM64/Release/wperf-devgen.exe release/wperf-driver;
cp wperf-lib/wperf-lib.h release/lib;
cp wperf-lib/ARM64/Release/wperf-lib.dll release/lib;
cp wperf-lib/ARM64/Release/wperf-lib.lib release/lib;
- >
$env:PATH += ";$PYTHON_PATH";
cp ci/ddf.py release;
cp ci/wperf-driver.raw.ddf release;
cd release;
python ddf.py $(pwd);
MakeCab /f wperf-driver.ddf;
mv disk1/wperf-driver.cab wperf-driver/;
rm -Force disk1;
rm -Force ddf.py;
rm -Force setup.inf;
rm -Force setup.rpt;
rm -Force wperf-driver.raw.ddf;
rm -Force wperf-driver.ddf;
cd ..;
# - $env:PATH += ";C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\TestPlatform\"; vstest.console.arm64.exe .\wperf-test\ARM64\Release\wperf-test.dll
artifacts:
name: "$env:CI_JOB_STAGE-$env:CI_COMMIT_REF_NAME"
paths:
- release/
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_LABELS =~ /(prep_release)/i'
test_driver:
stage: test
tags:
- win-arm64-tester
needs:
- job: build
artifacts: true
script:
# Command to create device node on CI machine
# devgen /add /hardwareid "Root\WPERFDRIVER" /bus ROOT
- >
$env:PATH+=";$WINDOWSKIT_TOOLS_FOLDER";
$MPATH=$(pwd);cd $LOCAL_CI_PATH;mkdir $CI_JOB_ID; cd $MPATH;
cp wperf-driver\ARM64\Release\wperf-driver\* $LOCAL_CI_PATH\$CI_JOB_ID;
cp wperf-driver\ARM64\Release\wperf-driver.cer $LOCAL_CI_PATH\$CI_JOB_ID;
cp wperf\ARM64\Release\wperf.exe $LOCAL_CI_PATH\$CI_JOB_ID;
cp -Recurse -Force wperf-scripts\tests $LOCAL_CI_PATH\$CI_JOB_ID;
cd $LOCAL_CI_PATH\$CI_JOB_ID;
certutil -addstore root wperf-driver.cer;
# pnputil /add-driver .\wperf-driver.inf /install
- >
ls;
$env:PATH += ";$PYTHON_PATH;$LOCAL_CI_PATH\$CI_JOB_ID";
python -m pip install pytest;
python -m pytest --maxfail=1;
# powershell .\tests\stress.ps1 5
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_LABELS =~ /(test_driver)/i'