forked from spkr-beep/beep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (41 loc) · 829 Bytes
/
.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
arch:
- amd64
- arm64
- ppc64le
language:
- C
compiler:
- clang
- gcc
script:
- export BEEP_DEBUG_BUILD=yes
- make -j 2 DESTDIR="$PWD/_i"
- env BEEP_LOG_LEVEL=999 ./beep || true
- make -j 2 DESTDIR="$PWD/_i" install
- ./beep --version > beep-usage.from--version
# - grep "$(date +%Y)" beep-usage.from--version
- cat beep-usage.from--version
- ./beep --help > beep-usage.from--help
- diff -u beep-usage.txt beep-usage.from--help
- ls -l
- ls -lR _i/
matrix:
include:
- os: linux
dist: bionic
- os: linux
dist: xenial
- os: linux
dist: trusty
- os: linux
dist: bionic
arch: arm64
- os: linux
dist: trusty
arch: amr64
- os: linux
dist: bionic
arch: ppc64le
- os: linux
dist: trusty
arch: ppc64le