-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
docker-compose.yml
138 lines (137 loc) · 3.19 KB
/
docker-compose.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
version: "3.9"
services:
build-gcc:
build:
context: .
dockerfile: ./docker/Dockerfile
args:
compiler: gcc
target: build
test-gcc:
build:
context: .
dockerfile: ./docker/Dockerfile
args:
compiler: gcc
target: test
build-llvm:
build:
context: .
dockerfile: ./docker/Dockerfile
args:
compiler: llvm
target: build
test-llvm:
build:
context: .
dockerfile: ./docker/Dockerfile
args:
compiler: llvm
target: test
build-mingw-x64:
build:
context: .
dockerfile: ./docker/Dockerfile.mingw
target: build
environment:
- CROSS_CC=x86_64-w64-mingw32-gcc
- CROSS_CXX=x86_64-w64-mingw32-g++
build-mingw-x86:
build:
context: .
dockerfile: ./docker/Dockerfile.mingw
target: build
environment:
- CROSS_CC=i686-w64-mingw32-gcc
- CROSS_CXX=i686-w64-mingw32-g++
build-emscripten:
build:
context: .
dockerfile: ./docker/Dockerfile.emscripten
target: build
minimal-build-mingw-x64:
build:
context: .
dockerfile: ./docker/Dockerfile.mingw
target: build-minimal
environment:
- CROSS_CC=x86_64-w64-mingw32-gcc
- CROSS_CXX=x86_64-w64-mingw32-g++
minimal-build-mingw-x64-from-env:
build:
context: .
dockerfile: ./docker/Dockerfile.mingw
target: build-minimal-from-env
environment:
- CC=x86_64-w64-mingw32-gcc
- CXX=x86_64-w64-mingw32-g++
minimal-build-mingw-x64-from-triplet:
build:
context: .
dockerfile: ./docker/Dockerfile.mingw
target: build-minimal-from-triplet
minimal-build-mingw-x86:
build:
context: .
dockerfile: ./docker/Dockerfile.mingw
target: build-minimal
environment:
- CROSS_CC=i686-w64-mingw32-gcc
- CROSS_CXX=i686-w64-mingw32-g++
build-rpi3:
build:
context: .
dockerfile: ./docker/Dockerfile.arm
target: build
build-rpi3-debug:
build:
context: .
dockerfile: ./docker/Dockerfile.arm
target: build-debug
build-rpi4:
build:
context: .
dockerfile: ./docker/Dockerfile.aarch64
target: build
build-rpi4-debug:
build:
context: .
dockerfile: ./docker/Dockerfile.aarch64
target: build-debug
test-rpi4:
build:
context: .
dockerfile: ./docker/Dockerfile.aarch64
target: test
build-rpi4-vcpkg:
build:
context: .
dockerfile: ./docker/Dockerfile.aarch64
target: build-vcpkg
build-rpi4-vcpkg-custom:
build:
context: .
dockerfile: ./docker/Dockerfile.aarch64
target: build-vcpkg-custom
build-rpi4-custom:
build:
context: .
dockerfile: ./docker/Dockerfile.aarch64
target: build-custom
build-rpi4-aarch64:
build:
context: .
dockerfile: ./docker/Dockerfile.aarch64
target: build-aarch64
build-rpi3-bare-metal:
build:
context: .
dockerfile: ./docker/Dockerfile.arm-bare-metal
target: build
build-gcc-with-custom-linker:
build:
context: .
dockerfile: ./docker/Dockerfile
args:
compiler: gcc
target: build-with-custom-linker