-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
164 lines (152 loc) · 4.06 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
services:
debian-unstable-devel:
command: ./build.sh
environment:
- R_VERSION=devel
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.debian-unstable-devel
image: rhub/debian-unstable-devel:latest
volumes:
- ./integration/tmp:/tmp/output
ubuntu-2204:
command: ./build.sh
environment:
- R_VERSION=devel
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.ubuntu-2204
image: rhub/ubuntu-2204:latest
volumes:
- ./integration/tmp:/tmp/output
ubuntu-2204-clang:
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-clang
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.ubuntu-2204-clang
image: rhub/ubuntu-2204-clang:latest
volumes:
- ./integration/tmp:/tmp/output
ubuntu-2204-rchk:
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-rchk
- LOCAL_STORE=/tmp/output
# - R_TARBALL_URL=https://cran.microsoft.com/snapshot/2023-02-28/src/base-prerelease/R-devel_2023-02-27_r83911.tar.gz
# - R_TARBALL_URL=https://cran.microsoft.com/snapshot/2023-03-01/src/base-prerelease/R-devel_2023-02-28_r83917.tar.gz
# - R_TARBALL_URL=https://github.com/r-hub/containers/releases/download/latest/R-devel_2023-03-15_r83984-0.tar.gz
build:
context: .
dockerfile: builder/Dockerfile.ubuntu-2204-rchk
image: rhub/ubuntu-2204-rchk:latest
volumes:
- ./integration/tmp:/tmp/output
ubuntu-2204-nold:
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-nold
- XCONFIGURE_OPTIONS=--disable-long-double
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.ubuntu-2204-nold
image: rhub/ubuntu-2204-nold:latest
volumes:
- ./integration/tmp:/tmp/output
ubuntu-2204-asan:
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-asan
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.ubuntu-2204-asan
image: rhub/ubuntu-2204-asan:latest
volumes:
- ./integration/tmp:/tmp/output
fedora-gcc:
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-gcc
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.fedora-gcc
image: rhub/fedora-gcc:latest
volumes:
- ./integration/tmp:/tmp/output
fedora-gcc13:
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-gcc13
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.fedora-gcc13
image: rhub/fedora-gcc13:latest
volumes:
- ./integration/tmp:/tmp/output
fedora-gcc14:
platform: linux/amd64
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-gcc14
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.fedora-gcc14
image: rhub/fedora-gcc14:latest
volumes:
- ./integration/tmp:/tmp/output
fedora-mkl:
platform: linux/amd64
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-mkl
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.fedora-mkl
image: rhub/fedora-mkl:latest
volumes:
- ./integration/tmp:/tmp/output
intel:
platform: linux/amd64
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-intel
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.fedora-intel
image: rhub/fedora-intel:latest
volumes:
- ./integration/tmp:/tmp/output
valgrind:
command: ./build.sh
environment:
- R_VERSION=devel
- R_TYPE=-valgrind
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: builder/Dockerfile.valgrind
platforms:
- linux/amd64
image: rhub/valgrind:latest
volumes:
- ./integration/tmp:/tmp/output