File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,23 @@ references:
22
22
# #####################################################################################################################
23
23
# Build steps
24
24
# #####################################################################################################################
25
+ install_python : &install-python
26
+ run :
27
+ name : install python 3.7
28
+ command : |
29
+ sudo add-apt-repository --yes ppa:deadsnakes/ppa
30
+ sudo apt-get update
31
+ sudo apt-get install python3.7
32
+
25
33
install_pip : &install-pip
26
34
run :
27
35
name : install pip
28
36
command : |
29
37
set +o pipefail
30
38
curl -O https://bootstrap.pypa.io/get-pip.py
31
- sudo python3 get-pip.py
39
+ sudo python3.7 get-pip.py
40
+ sudo python3.7 -m pip install --upgrade pip setuptools wheel
41
+ sudo python3.7 -m pip install pipenv
32
42
33
43
install_jdk : &install-jdk
34
44
run :
90
100
- checkout
91
101
- setup_remote_docker :
92
102
docker_layer_caching : true
103
+ - *install-python
93
104
- *install-pip
94
105
- *install-jdk
95
106
- awscli/install
@@ -106,6 +117,7 @@ jobs:
106
117
- checkout
107
118
- setup_remote_docker :
108
119
docker_layer_caching : true
120
+ - *install-python
109
121
- *install-pip
110
122
- *install-jdk
111
123
- awscli/install
You can’t perform that action at this time.
0 commit comments