forked from caml-pkcs11/caml-crush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
30 lines (27 loc) · 1.02 KB
/
.travis.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
language: c
compiler: gcc
services: docker
dist: bionic
jobs:
include:
- stage: Debian builds
name: Stretch
script: docker build -t caml-crush-stretch --build-arg flavor=stretch -f Dockerfile.debian .
-
name: Jessie
script: docker build -t caml-crush-jessie --build-arg flavor=jessie -f Dockerfile.debian .
-
name: Buster
script: docker build -t caml-crush-buster --build-arg flavor=buster -f Dockerfile.debian .
-
name: Sid
script: docker build -t caml-crush-sid --build-arg flavor=sid -f Dockerfile.debian .
- stage: Ubuntu builds
name: Trusty
script: docker build -t caml-crush-trusty -f Dockerfile.ubuntu-trusty .
-
name: Xenial
script: docker build -t caml-crush-xenial --build-arg dist=ubuntu --build-arg flavor=xenial -f Dockerfile.debian .
-
name: Bionic
script: docker build -t caml-crush-bionic --build-arg dist=ubuntu --build-arg flavor=bionic -f Dockerfile.debian .