-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathbuild-runtime.ts
More file actions
88 lines (88 loc) · 2.29 KB
/
build-runtime.ts
File metadata and controls
88 lines (88 loc) · 2.29 KB
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
export enum BuildRuntime {
Node145 = 'node-14.5',
Node160 = 'node-16.0',
Node180 = 'node-18.0',
Node190 = 'node-19.0',
Node200 = 'node-20.0',
Node210 = 'node-21.0',
Node22 = 'node-22',
Node23 = 'node-23',
Node24 = 'node-24',
Node25 = 'node-25',
Php80 = 'php-8.0',
Php81 = 'php-8.1',
Php82 = 'php-8.2',
Php83 = 'php-8.3',
Php84 = 'php-8.4',
Ruby30 = 'ruby-3.0',
Ruby31 = 'ruby-3.1',
Ruby32 = 'ruby-3.2',
Ruby33 = 'ruby-3.3',
Ruby34 = 'ruby-3.4',
Ruby40 = 'ruby-4.0',
Python38 = 'python-3.8',
Python39 = 'python-3.9',
Python310 = 'python-3.10',
Python311 = 'python-3.11',
Python312 = 'python-3.12',
Python313 = 'python-3.13',
Python314 = 'python-3.14',
Pythonml311 = 'python-ml-3.11',
Pythonml312 = 'python-ml-3.12',
Pythonml313 = 'python-ml-3.13',
Deno140 = 'deno-1.40',
Deno146 = 'deno-1.46',
Deno20 = 'deno-2.0',
Deno25 = 'deno-2.5',
Deno26 = 'deno-2.6',
Dart215 = 'dart-2.15',
Dart216 = 'dart-2.16',
Dart217 = 'dart-2.17',
Dart218 = 'dart-2.18',
Dart219 = 'dart-2.19',
Dart30 = 'dart-3.0',
Dart31 = 'dart-3.1',
Dart33 = 'dart-3.3',
Dart35 = 'dart-3.5',
Dart38 = 'dart-3.8',
Dart39 = 'dart-3.9',
Dart310 = 'dart-3.10',
Dotnet60 = 'dotnet-6.0',
Dotnet70 = 'dotnet-7.0',
Dotnet80 = 'dotnet-8.0',
Dotnet10 = 'dotnet-10',
Java80 = 'java-8.0',
Java110 = 'java-11.0',
Java170 = 'java-17.0',
Java180 = 'java-18.0',
Java210 = 'java-21.0',
Java22 = 'java-22',
Java25 = 'java-25',
Swift55 = 'swift-5.5',
Swift58 = 'swift-5.8',
Swift59 = 'swift-5.9',
Swift510 = 'swift-5.10',
Swift62 = 'swift-6.2',
Kotlin16 = 'kotlin-1.6',
Kotlin18 = 'kotlin-1.8',
Kotlin19 = 'kotlin-1.9',
Kotlin20 = 'kotlin-2.0',
Kotlin23 = 'kotlin-2.3',
Cpp17 = 'cpp-17',
Cpp20 = 'cpp-20',
Bun10 = 'bun-1.0',
Bun11 = 'bun-1.1',
Bun12 = 'bun-1.2',
Bun13 = 'bun-1.3',
Go123 = 'go-1.23',
Go124 = 'go-1.24',
Go125 = 'go-1.25',
Go126 = 'go-1.26',
Static1 = 'static-1',
Flutter324 = 'flutter-3.24',
Flutter327 = 'flutter-3.27',
Flutter329 = 'flutter-3.29',
Flutter332 = 'flutter-3.32',
Flutter335 = 'flutter-3.35',
Flutter338 = 'flutter-3.38',
}