forked from aws/aws-codebuild-docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtimes.yml
105 lines (94 loc) · 2.7 KB
/
runtimes.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
version: 0.1
runtimes:
android:
versions:
28:
requires:
java: ["corretto8"]
commands:
- echo "Installing Android version 28 ..."
29:
requires:
java: ["corretto8"]
commands:
- echo "Installing Android version 29 ..."
java:
versions:
corretto11:
commands:
- echo "Installing corretto(OpenJDK) version 11 ..."
- export JAVA_HOME="$JAVA_11_HOME"
- export JRE_HOME="$JRE_11_HOME"
- export JDK_HOME="$JDK_11_HOME"
- |-
for tool_path in "$JAVA_HOME"/bin/*;
do tool=`basename "$tool_path"`;
if [ $tool != 'java-rmi.cgi' ];
then
rm -f /usr/bin/$tool /var/lib/alternatives/$tool \
&& update-alternatives --install /usr/bin/$tool $tool $tool_path 20000;
fi;
done
corretto8:
commands:
- echo "Installing corretto(OpenJDK) version 8 ..."
- export JAVA_HOME="$JAVA_8_HOME"
- export JRE_HOME="$JRE_8_HOME"
- export JDK_HOME="$JDK_8_HOME"
- |-
for tool_path in "$JAVA_8_HOME"/bin/* "$JRE_8_HOME"/bin/*;
do tool=`basename "$tool_path"`;
if [ $tool != 'java-rmi.cgi' ];
then
rm -f /usr/bin/$tool /var/lib/alternatives/$tool \
&& update-alternatives --install /usr/bin/$tool $tool $tool_path 20000;
fi;
done
golang:
versions:
1.12:
commands:
- echo "Installing Go version 1.12 ..."
- goenv global $GOLANG_12_VERSION
1.13:
commands:
- echo "Installing Go version 1.13 ..."
- goenv global $GOLANG_13_VERSION
python:
versions:
3.8:
commands:
- echo "Installing Python version 3.8 ..."
- pyenv global $PYTHON_38_VERSION
php:
versions:
7.3:
commands:
- echo "Installing PHP version 7.3 ..."
- phpenv global $PHP_73_VERSION
ruby:
versions:
2.6:
commands:
- echo "Installing Ruby version 2.6 ..."
- rbenv global $RUBY_26_VERSION
nodejs:
versions:
12:
commands:
- echo "Installing Node.js version 12 ..."
- n $NODE_12_VERSION
10:
commands:
- echo "Installing Node.js version 10 ..."
- n $NODE_10_VERSION
docker:
versions:
18:
commands:
- echo "Specifying docker version in buildspec is deprecated. Using docker $DOCKER_VERSION ."
dotnet:
versions:
3.0:
commands:
- echo "Installing .NET version 3.0 ..."