forked from conan-io/conan-docker-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
728 lines (728 loc) · 23.5 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
version: '3'
services:
gcc46:
build:
context: gcc_4.6
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc46:${DOCKER_BUILD_TAG}"
container_name: gcc46
tty: true
gcc48:
build:
context: gcc_4.8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc48:${DOCKER_BUILD_TAG}"
container_name: gcc48
tty: true
gcc48-x86:
build:
context: gcc_4.8-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc48-x86:${DOCKER_BUILD_TAG}"
container_name: gcc48-x86
tty: true
gcc49:
build:
context: gcc_4.9
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc49:${DOCKER_BUILD_TAG}"
container_name: gcc49
tty: true
gcc49-x86:
build:
context: gcc_4.9-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc49-x86:${DOCKER_BUILD_TAG}"
container_name: gcc49-x86
tty: true
gcc49-armv7:
build:
context: gcc_4.9-armv7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc49-armv7:${DOCKER_BUILD_TAG}"
container_name: gcc49-armv7
tty: true
gcc49-armv7hf:
build:
context: gcc_4.9-armv7hf
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc49-armv7hf:${DOCKER_BUILD_TAG}"
container_name: gcc49-armv7hf
tty: true
gcc5:
build:
context: gcc_5
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc5:${DOCKER_BUILD_TAG}"
container_name: gcc5
tty: true
gcc5-x86:
build:
context: gcc_5-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc5-x86:${DOCKER_BUILD_TAG}"
container_name: gcc5-x86
tty: true
gcc5-armv7:
build:
context: gcc_5-armv7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc5-armv7:${DOCKER_BUILD_TAG}"
container_name: gcc5-armv7
tty: true
gcc5-armv7hf:
build:
context: gcc_5-armv7hf
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc5-armv7hf:${DOCKER_BUILD_TAG}"
container_name: gcc5-armv7hf
tty: true
gcc5-armv8:
build:
context: gcc_5-armv8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc5-armv8:${DOCKER_BUILD_TAG}"
container_name: gcc5-armv8
tty: true
gcc52:
build:
context: gcc_5.2
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc52:${DOCKER_BUILD_TAG}"
container_name: gcc52
tty: true
gcc53:
build:
context: gcc_5.3
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc53:${DOCKER_BUILD_TAG}"
container_name: gcc53
tty: true
gcc54:
build:
context: gcc_5.4
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc54:${DOCKER_BUILD_TAG}"
container_name: gcc54
tty: true
gcc6:
build:
context: gcc_6
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc6:${DOCKER_BUILD_TAG}"
container_name: gcc6
tty: true
gcc6-x86:
build:
context: gcc_6-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc6-x86:${DOCKER_BUILD_TAG}"
container_name: gcc6-x86
tty: true
gcc6-armv7:
build:
context: gcc_6-armv7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc6-armv7:${DOCKER_BUILD_TAG}"
container_name: gcc6-armv7
tty: true
gcc6-armv7hf:
build:
context: gcc_6-armv7hf
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc6-armv7hf:${DOCKER_BUILD_TAG}"
container_name: gcc6-armv7hf
tty: true
gcc6-armv8:
build:
context: gcc_6-armv8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc6-armv8:${DOCKER_BUILD_TAG}"
container_name: gcc6-armv8
tty: true
gcc63:
build:
context: gcc_6.3
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc63:${DOCKER_BUILD_TAG}"
container_name: gcc63
tty: true
gcc64:
build:
context: gcc_6.4
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc64:${DOCKER_BUILD_TAG}"
container_name: gcc64
tty: true
gcc7:
build:
context: gcc_7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7:${DOCKER_BUILD_TAG}"
container_name: gcc7
tty: true
gcc7-x86:
build:
context: gcc_7-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7-x86:${DOCKER_BUILD_TAG}"
container_name: gcc7-x86
tty: true
gcc7-armv7:
build:
context: gcc_7-armv7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7-armv7:${DOCKER_BUILD_TAG}"
container_name: gcc7-armv7
tty: true
gcc7-armv7hf:
build:
context: gcc_7-armv7hf
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7-armv7hf:${DOCKER_BUILD_TAG}"
container_name: gcc7-armv7hf
tty: true
gcc7-armv8:
build:
context: gcc_7-armv8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7-armv8:${DOCKER_BUILD_TAG}"
container_name: gcc7-armv8
tty: true
gcc7-mingw:
build:
context: gcc_7-mingw
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7-mingw:${DOCKER_BUILD_TAG}"
container_name: gcc7-mingw
tty: true
gcc72:
build:
context: gcc_7.2
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc72:${DOCKER_BUILD_TAG}"
container_name: gcc72
tty: true
gcc8:
build:
context: gcc_8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc8:${DOCKER_BUILD_TAG}"
container_name: gcc8
tty: true
gcc8-x86:
build:
context: gcc_8-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc8-x86:${DOCKER_BUILD_TAG}"
container_name: gcc8-x86
tty: true
gcc8-armv7:
build:
context: gcc_8-armv7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc8-armv7:${DOCKER_BUILD_TAG}"
container_name: gcc8-armv7
tty: true
gcc8-armv7hf:
build:
context: gcc_8-armv7hf
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc8-armv7hf:${DOCKER_BUILD_TAG}"
container_name: gcc8-armv7hf
tty: true
gcc8-armv8:
build:
context: gcc_8-armv8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc8-armv8:${DOCKER_BUILD_TAG}"
container_name: gcc8-armv8
tty: true
gcc9:
build:
context: gcc_9
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc9:${DOCKER_BUILD_TAG}"
container_name: gcc9
tty: true
gcc9-x86:
build:
context: gcc_9-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc9-x86:${DOCKER_BUILD_TAG}"
container_name: gcc9-x86
tty: true
gcc9-armv7:
build:
context: gcc_9-armv7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc9-armv7:${DOCKER_BUILD_TAG}"
container_name: gcc9-armv7
tty: true
gcc9-armv7hf:
build:
context: gcc_9-armv7hf
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc9-armv7hf:${DOCKER_BUILD_TAG}"
container_name: gcc9-armv7hf
tty: true
gcc9-armv8:
build:
context: gcc_9-armv8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc9-armv8:${DOCKER_BUILD_TAG}"
container_name: gcc9-armv8
tty: true
clang38:
build:
context: clang_3.8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang38:${DOCKER_BUILD_TAG}"
container_name: clang38
tty: true
clang39:
build:
context: clang_3.9
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang39:${DOCKER_BUILD_TAG}"
container_name: clang39
tty: true
clang39-x86:
build:
context: clang_3.9-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang39-x86:${DOCKER_BUILD_TAG}"
container_name: clang39-x86
tty: true
clang40:
build:
context: clang_4.0
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang40:${DOCKER_BUILD_TAG}"
container_name: clang40
tty: true
clang40-x86:
build:
context: clang_4.0-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang40-x86:${DOCKER_BUILD_TAG}"
container_name: clang40-x86
tty: true
clang50:
build:
context: clang_5.0
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang50:${DOCKER_BUILD_TAG}"
container_name: clang50
tty: true
clang50-x86:
build:
context: clang_5.0-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang50-x86:${DOCKER_BUILD_TAG}"
container_name: clang50-x86
tty: true
clang60:
build:
context: clang_6.0
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang60:${DOCKER_BUILD_TAG}"
container_name: clang60
tty: true
clang60-x86:
build:
context: clang_6.0-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang60-x86:${DOCKER_BUILD_TAG}"
container_name: clang60-x86
tty: true
clang7:
build:
context: clang_7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang7:${DOCKER_BUILD_TAG}"
container_name: clang7
tty: true
clang7-x86:
build:
context: clang_7-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang7-x86:${DOCKER_BUILD_TAG}"
container_name: clang7-x86
tty: true
conan_server:
build:
context: conan_server
dockerfile: Dockerfile
args:
CONAN_VERSION: ${CONAN_VERSION}
image: "${DOCKER_USERNAME}/conan_server:${DOCKER_BUILD_TAG}"
container_name: conan_server
gcc7-centos6:
build:
context: gcc_7-centos6
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7-centos6:${DOCKER_BUILD_TAG}"
container_name: gcc7-centos6
tty: true
gcc7-centos6-x86:
build:
context: gcc_7-centos6-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/gcc7-centos6-x86:${DOCKER_BUILD_TAG}"
container_name: gcc7-centos6-x86
tty: true
clang8:
build:
context: clang_8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang8:${DOCKER_BUILD_TAG}"
container_name: clang8
tty: true
clang8-x86:
build:
context: clang_8-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang8-x86:${DOCKER_BUILD_TAG}"
container_name: clang8-x86
tty: true
clang9:
build:
context: clang_9
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang9:${DOCKER_BUILD_TAG}"
container_name: clang9
tty: true
clang9-x86:
build:
context: clang_9-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/clang9-x86:${DOCKER_BUILD_TAG}"
container_name: clang9-x86
tty: true
msvc14:
build:
context: msvc_14
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/msvc14:${DOCKER_BUILD_TAG}"
container_name: msvc14
tty: true
msvc15:
build:
context: msvc_15
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/msvc15:${DOCKER_BUILD_TAG}"
container_name: msvc15
tty: true
android-clang8:
build:
context: android-clang_8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/android-clang8:${DOCKER_BUILD_TAG}"
container_name: android-clang8
tty: true
android-clang8-x86:
build:
context: android-clang_8-x86
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/android-clang8-x86:${DOCKER_BUILD_TAG}"
container_name: android-clang8-x86
tty: true
android-clang8-armv7:
build:
context: android-clang_8-armv7
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/android-clang8-armv7:${DOCKER_BUILD_TAG}"
container_name: android-clang8-armv7
tty: true
android-clang8-armv8:
build:
context: android-clang_8-armv8
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/android-clang8-armv8:${DOCKER_BUILD_TAG}"
container_name: android-clang8-armv8
gcc46-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc46
image: "${DOCKER_USERNAME}/gcc46-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc46-jnlp-slave
tty: true
gcc48-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc48
image: "${DOCKER_USERNAME}/gcc48-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc48-jnlp-slave
tty: true
gcc48-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc48-x86
image: "${DOCKER_USERNAME}/gcc48-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: gcc48-jnlp-slave-x86
tty: true
gcc49-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc49
image: "${DOCKER_USERNAME}/gcc49-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc49-jnlp-slave
gcc49-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc49-x86
image: "${DOCKER_USERNAME}/gcc49-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: gcc49-jnlp-slave-x86
tty: true
gcc5-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc5
image: "${DOCKER_USERNAME}/gcc5-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc5-jnlp-slave
gcc5-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc5-x86
image: "${DOCKER_USERNAME}/gcc5-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: gcc5-jnlp-slave-x86
tty: true
gcc6-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc6
image: "${DOCKER_USERNAME}/gcc6-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc6-jnlp-slave
gcc6-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc6-x86
image: "${DOCKER_USERNAME}/gcc6-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: gcc6-jnlp-slave-x86
tty: true
gcc7-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc7
image: "${DOCKER_USERNAME}/gcc7-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc7-jnlp-slave
gcc7-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc7-x86
image: "${DOCKER_USERNAME}/gcc7-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: gcc7-jnlp-slave-x86
tty: true
gcc8-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc8
image: "${DOCKER_USERNAME}/gcc8-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc8-jnlp-slave
gcc8-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc8-x86
image: "${DOCKER_USERNAME}/gcc8-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: gcc8-jnlp-slave-x86
tty: true
gcc9-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc9
image: "${DOCKER_USERNAME}/gcc9-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: gcc9-jnlp-slave
gcc9-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc9-x86
image: "${DOCKER_USERNAME}/gcc9-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: gcc9-jnlp-slave-x86
tty: true
gcc7-jnlp-slave-centos6:
build:
context: jenkins-jnlp-slave
dockerfile: centos6/Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc7-centos6
image: "${DOCKER_USERNAME}/gcc7-jnlp-slave-centos6:${DOCKER_BUILD_TAG}"
container_name: gcc7-jnlp-slave-centos6
gcc7-jnlp-slave-centos6-x86:
build:
context: jenkins-jnlp-slave
dockerfile: centos6/Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/gcc7-centos6-x86
image: "${DOCKER_USERNAME}/gcc7-jnlp-slave-centos6-x86:${DOCKER_BUILD_TAG}"
container_name: gcc7-jnlp-slave-centos6-x86
clang39-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang39
image: "${DOCKER_USERNAME}/clang39-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: clang39-jnlp-slave
tty: true
clang39-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang39-x86
image: "${DOCKER_USERNAME}/clang39-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: clang39-jnlp-slave-x86
tty: true
clang40-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang40
image: "${DOCKER_USERNAME}/clang40-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: clang40-jnlp-slave
tty: true
clang40-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang40-x86
image: "${DOCKER_USERNAME}/clang40-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: clang40-jnlp-slave-x86
tty: true
clang50-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang50
image: "${DOCKER_USERNAME}/clang50-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: clang50-jnlp-slave
tty: true
clang50-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang50-x86
image: "${DOCKER_USERNAME}/clang50-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: clang50-jnlp-slave-x86
tty: true
clang60-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang60
image: "${DOCKER_USERNAME}/clang60-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: clang60-jnlp-slave
tty: true
clang60-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang60-x86
image: "${DOCKER_USERNAME}/clang60-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: clang60-jnlp-slave-x86
tty: true
clang7-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang7
image: "${DOCKER_USERNAME}/clang7-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: clang7-jnlp-slave
tty: true
clang7-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang7-x86
image: "${DOCKER_USERNAME}/clang7-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: clang7-jnlp-slave-x86
tty: true
clang8-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang8
image: "${DOCKER_USERNAME}/clang8-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: clang8-jnlp-slave
tty: true
clang8-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang8-x86
image: "${DOCKER_USERNAME}/clang8-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: clang8-jnlp-slave-x86
tty: true
clang9-jnlp-slave:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang9
image: "${DOCKER_USERNAME}/clang9-jnlp-slave:${DOCKER_BUILD_TAG}"
container_name: clang9-jnlp-slave
tty: true
clang9-jnlp-slave-x86:
build:
context: jenkins-jnlp-slave
dockerfile: Dockerfile
args:
SOURCE_CONANIO_IMAGE: conanio/clang9-x86
image: "${DOCKER_USERNAME}/clang9-jnlp-slave-x86:${DOCKER_BUILD_TAG}"
container_name: clang9-jnlp-slave-x86
tty: true
conantests:
build:
context: conan_tests
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/conantests:${DOCKER_BUILD_TAG}"
container_name: conantests
tty: true
conantestazure:
build:
context: conan_test_azure
dockerfile: Dockerfile
image: "${DOCKER_USERNAME}/conantestazure:${DOCKER_BUILD_TAG}"
container_name: conan-test-azure
tty: true