forked from scala-native/scala-native-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (34 loc) · 887 Bytes
/
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
version: '3'
services:
bindgen:
image: scalabindgen/scala-native-bindgen:${VERSION:-latest}
build:
context: bindgen
args:
- UBUNTU_VERSION=18.04
- LLVM_VERSION=6.0
entrypoint: [/scala-native-bindgen]
ubuntu-18.04-llvm-6.0:
image: scalabindgen/scala-native-bindgen-builder:ubuntu-18.04-llvm-6.0
build:
context: .
args:
- UBUNTU_VERSION=18.04
- LLVM_VERSION=6.0
command: scripts/test.sh
volumes:
- .:/src
- ${HOME}/.ivy2:/root/.ivy2
- ${HOME}/.sbt:/root/.sbt
ubuntu-18.04-llvm-5.0:
image: scalabindgen/scala-native-bindgen-builder:ubuntu-18.04-llvm-5.0
build:
context: .
args:
- UBUNTU_VERSION=18.04
- LLVM_VERSION=5.0
command: scripts/test.sh
volumes:
- .:/src
- ${HOME}/.ivy2:/root/.ivy2
- ${HOME}/.sbt:/root/.sbt