Skip to content

Commit 4ae32e0

Browse files
author
azhogov
committed
Azure CI: Add linux.yml
1 parent eebcf4d commit 4ae32e0

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.ci/azure/linux.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
jobs:
2+
- job: Lin
3+
4+
# About 150% of total time
5+
timeoutInMinutes: 60
6+
7+
pool:
8+
name: LIN_VMSS_VENV_F8S_WU2
9+
10+
variables:
11+
system.debug: true
12+
VSTS_HTTP_RETRY: 5
13+
VSTS_HTTP_TIMEOUT: 200
14+
WORKERS_NUMBER: 8
15+
BUILD_TYPE: Release
16+
REPO_DIR: $(Build.Repository.LocalPath)
17+
WORK_DIR: $(Pipeline.Workspace)/_w
18+
OPENVINO_REPO_DIR: $(WORK_DIR)/openvino
19+
BUILD_DIR: $(WORK_DIR)/build
20+
21+
steps:
22+
- script: |
23+
curl -H Metadata:true --noproxy "*" "http://169.254.169.254/metadata/instance?api-version=2019-06-01"
24+
whoami
25+
uname -a
26+
which python3
27+
python3 --version
28+
which java
29+
java -version
30+
gcc --version
31+
lsb_release
32+
env
33+
cat /proc/cpuinfo
34+
cat /proc/meminfo
35+
cat /etc/fstab
36+
vmstat -s
37+
df
38+
lsblk -o NAME,HCTL,SIZE,MOUNTPOINT | grep -i "sd"
39+
displayName: 'System info'
40+
41+
- script: |
42+
rm -rf $(WORK_DIR) ; mkdir $(WORK_DIR)
43+
rm -rf $(BUILD_DIR) ; mkdir $(BUILD_DIR)
44+
displayName: 'Make dir'
45+
46+
- checkout: self
47+
clean: true
48+
lfs: false
49+
submodules: recursive
50+
path: openvino_contrib
51+

0 commit comments

Comments
 (0)