@@ -11,7 +11,7 @@ pipeline {
11
11
steps {
12
12
checkout scm
13
13
sh ' rm -rf env'
14
- sh ' /usr/bin/python3.7 -m venv env'
14
+ sh ' /usr/bin/python3.8 -m venv env'
15
15
sh ' env/bin/python -m pip install -U mypy flake8'
16
16
sh ' find tests -name "*.py" | xargs env/bin/mypy --ignore-missing-imports'
17
17
sh ' find src -name "*.py" | xargs env/bin/mypy --ignore-missing-imports'
@@ -24,9 +24,9 @@ pipeline {
24
24
checkout scm
25
25
sh '''
26
26
rm -rf env
27
- /usr/bin/python3.7 -m venv env
27
+ /usr/bin/python3.8 -m venv env
28
28
source env/bin/activate
29
- python -m pip install -U -e .
29
+ python3.8 -m pip install -U -e .
30
30
31
31
jabba install $JDK_11
32
32
export JAVA_HOME=$(jabba which --home $JDK_11)
@@ -41,7 +41,7 @@ pipeline {
41
41
checkout scm
42
42
sh '''
43
43
rm -rf env
44
- /usr/bin/python3.7 -m venv env
44
+ /usr/bin/python3.8 -m venv env
45
45
source env/bin/activate
46
46
python -m pip install -U -e .
47
47
@@ -58,7 +58,7 @@ pipeline {
58
58
checkout scm
59
59
sh '''
60
60
rm -rf env
61
- /usr/bin/python3.7 -m venv env
61
+ /usr/bin/python3.8 -m venv env
62
62
source env/bin/activate
63
63
python -m pip install -U -e .
64
64
@@ -75,7 +75,7 @@ pipeline {
75
75
checkout scm
76
76
sh '''
77
77
rm -rf env
78
- /usr/bin/python3.7 -m venv env
78
+ /usr/bin/python3.8 -m venv env
79
79
source env/bin/activate
80
80
python -m pip install -U -e .
81
81
@@ -93,7 +93,7 @@ pipeline {
93
93
checkout scm
94
94
sh '''
95
95
rm -rf env
96
- /usr/bin/python3.7 -m venv env
96
+ /usr/bin/python3.8 -m venv env
97
97
source env/bin/activate
98
98
python -m pip install -U -e .
99
99
@@ -130,7 +130,7 @@ pipeline {
130
130
checkout scm
131
131
sh '''
132
132
rm -rf env
133
- /usr/bin/python3.7 -m venv env
133
+ /usr/bin/python3.8 -m venv env
134
134
source env/bin/activate
135
135
python -m pip install -U cr8
136
136
jabba install $JDK_11
0 commit comments