-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-2.yml
66 lines (60 loc) · 2.25 KB
/
azure-pipelines-2.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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- main
pool: wenjiao-test
stages:
- stage: pylint
jobs:
- job: pylint_test
steps:
- task: Bash@3
inputs:
targetType: "inline"
script: |
pip install pylint==2.12.1
pip install intel-tensorflow
python -m pylint -f json --disable=R,C,W,E1129 --enable=line-too-long --max-line-length=120 --extension-pkg-whitelist=numpy --ignored-classes=TensorProto,NodeProto --ignored-modules=tensorflow,torch,torch.quantization,torch.tensor,torchvision,mxnet,onnx,onnxruntime ./neural_compressor
exit_code=$?
if [ ${exit_code} -ne 0 ] ; then
echo "PyLint exited with non-zero exit code."; exit 1
fi
exit 0
- stage: bandit
jobs:
- job: bandit_test
steps:
- task: Bash@3
inputs:
targetType: "inline"
script: |
pip install bandit
python -m bandit -r -lll -iii neural_compressor
exit_code=$?
if [ ${exit_code} -ne 0 ] ; then
echo "Bandit exited with non-zero exit code."; exit 1
fi
exit 0
- stage: pyspelling
jobs:
- job: pyspelling_test
steps:
- task: Bash@3
inputs:
targetType: "inline"
script: |
pip install pyspelling
# Update paths to validation and lpot repositories
VAL_REPO=${WORKSPACE}
sed -i "s|\${VAL_REPO}|$VAL_REPO|g" ${VAL_REPO}/pyspelling_conf.yaml
sed -i "s|\${LPOT_REPO}|$REPO_DIR|g" ${VAL_REPO}/pyspelling_conf.yaml
echo "Modified config:"
cat ${VAL_REPO}/pyspelling_conf.yaml
pyspelling -c ${VAL_REPO}/pyspelling_conf.yaml
exit_code=$?
if [ ${exit_code} -ne 0 ] ; then
echo "Pyspelling exited with non-zero exit code."; exit 1
fi
exit 0