-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.toml
86 lines (58 loc) · 1.02 KB
/
build.toml
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
# [language]
# setup = apk add... "<package>"
[bash]
setup = "bash"
[nodejs]
setup = "nodejs"
[c]
setup = "gcc"
[cpp]
setup = "g++"
[fortran]
setup = "gfortran"
[go]
setup = "gcc-go"
[haskell]
setup = "ghc"
[java]
setup = "openjdk21"
[lua]
setup = "lua"
[perl]
setup = "perl"
[python]
setup = "python3"
[ruby]
setup = "ruby"
[rust]
setup = "rust"
[typescript]
setup = "npm"
[clisp]
setup = "sbcl"
[racket]
setup = "racket"
[crystal]
setup = "crystal"
[clojure]
setup = "clojure"
[nasm]
setup = "nasm binutils"
[zig]
setup = "zig"
[nim]
setup = "nim gcc"
[d]
setup = "gcc-gdc"
[csharp]
setup = "wget && apk add mono --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing"
[rscript]
setup = "R"
[dart]
setup = "&& apk add dart --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing"
[vb]
setup = "&& apk add mono --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing"
[fsharp]
setup = "&& apk add mono --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing"
[php]
setup = "php"