blob: cd0bad7d227a6ae53794758152a538c9de318560 (
plain)
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
|
version: "3.7"
x-default-service: &linux
working_dir: /qbs
environment:
- BUILD_OPTIONS
- QTEST_FUNCTION_TIMEOUT
volumes:
- .:/qbs
- ~/.ccache:/home/devel/.ccache
network_mode: bridge
cap_add:
- SYS_PTRACE
services:
bionic:
<< : *linux
hostname: bionic
image: ${DOCKER_USER:-qbsbuild}/qbsdev:bionic-5.15.0_1.15.1-1
build:
dockerfile: docker/bionic/Dockerfile
context: .
args:
QT_VERSION: 5.15.0
QTCREATOR_VERSION: 4.11.2
bionic-android-513:
<< : *linux
hostname: bionic-android
image: ${DOCKER_USER:-qbsbuild}/qbsdev:bionic-android-5.13.2-3
build:
dockerfile: docker/bionic/test-android.Dockerfile
context: .
args:
QT_VERSION: 5.13.2
bionic-android-514:
<< : *linux
hostname: bionic-android
image: ${DOCKER_USER:-qbsbuild}/qbsdev:bionic-android-5.14.0-3
build:
dockerfile: docker/bionic/test-android.Dockerfile
context: .
args:
QT_VERSION: 5.14.0
windows:
image: ${DOCKER_USER:-qbsbuild}/qbsdev:windowsservercore-5.15.0_1.16.0-0
build:
dockerfile: docker/windowsservercore/Dockerfile
context: .
args:
QT_VERSION: 5.15.0
QBS_VERSION: 1.16.0
working_dir: 'C:/qbs'
environment:
- BUILD_OPTIONS
- WITH_DOCS
volumes:
- .:C:\qbs
- ~/.ccache:C:\.ccache
network_mode: nat
|