forked from aklomp/base64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
71 lines (59 loc) · 1.4 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
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
language: c
services: docker
jobs:
allow_failures:
- os: osx
- arch: ppc64le
include:
- name: linux-amd64-gcc
os: linux
arch: amd64
compiler: gcc
script: test/ci/amd64.sh
- name: linux-amd64-gcc +openmp
os: linux
arch: amd64
compiler: gcc
env: OPENMP=1 OMP_NUM_THREADS=4
script: test/ci/amd64.sh
- name: linux-amd64-clang
os: linux
arch: amd64
compiler: clang
script: test/ci/amd64.sh
- name: linux-arm32-gcc
compiler: gcc
script: test/ci/docker-arm32.sh
- name: linux-arm32-clang
compiler: clang
script: test/ci/docker-arm32.sh
- name: linux-powerpc-gcc
compiler: gcc
script: test/ci/docker-powerpc.sh
- name: linux-arm64-gcc
os: linux
arch: arm64
compiler: gcc
env: NEON64_CFLAGS="-march=armv8-a"
script: test/ci/generic.sh
- name: linux-arm64-clang
os: linux
arch: arm64
compiler: clang
env: NEON64_CFLAGS="-march=armv8-a"
script: test/ci/generic.sh
- name: linux-s390x-gcc
os: linux
arch: s390x
compiler: gcc
script: test/ci/generic.sh
- name: linux-ppc64le-gcc
os: linux
arch: ppc64le
compiler: gcc
script: test/ci/generic.sh
- name: osx-amd64-clang
os: osx
arch: amd64
compiler: clang
script: test/ci/amd64.sh