forked from Xilinx/XRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (42 loc) · 2 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
sudo: enabled
language: cpp
matrix:
include:
- os: linux
env:
- CONFIGURATION=linux/amd64
- secure: lnoyS+cRbhWxwX/VrinmWA3GcUzcuCNWfN05Eu+FhoZJC4N01e35ZWQZGIZ2mtp/avqfL8DMwB7/9yin8QjmqqrLYVNIBNvYfviFk7VuqfbBAM42kqBtR7enzQMzfZhkPqBvkx5NBPN6Sk2sNTojgYj5o9iVpDOjX1xbb9DlyWZ72B1QzRtJKuSJ8bAxmJqqfrOnCGwCpR1ZPfXqUxAvJBjZd/24QXmVsX69aKP4nVOXM1lGXmxUSKWxdGRBr8DsPtW9lqad+MrpjDwFwvgS6Xc1idrkT309bwm+yMnhsqpdyKIJU2/oCJ4m5m5NbViiffAV7RtDOICRNIDXbtv5roCa+kKFgXyiknvlkUVBBqqwDwRGiryR5Iq5WSfx16PdppG7ZLuIzcREORXLw4p1quo8qDAuq81WruwfqGEUDoBM3jRmpa45CNcR1nfkroNwzSX9T2mRc8Rzz4XaInG/tYmWeE23AiMIQjGy1Ig1kkY1Qr7bo5BvlpvX0biG7C6UqC3GnLO2couZ7zbkqUFSmIPTqK841pwYRus9woAsCLvt6VKoRqfE260QUF9DibMwxdv8igBqHJ1t7CnWCfQv/ZR7im83gOvJRNGVwOD01+gMmbQl0gi876kV6vquP5bO+OzKXhoaB74Yk8LBXat9mfBvJEw6cVjawkV5nN4Bc6E="
addons:
coverity_scan:
project:
name: "Xilinx/XRT"
description: "Xilinx Runtime"
notification_email: [email protected]
build_command: "./build.sh -driver"
branch_pattern: master
# For true bionic on ppc64le we should specify os as plain linux instead of linux-ppc64le. However, Travis
# CI has a bug where linux-headers on Bionic and Focal are not available which breaks XRT build. Specifying
# linux-ppc64le reverts to xenial irrespective of dist saying bionic.
# https://travis-ci.community/t/kernel-headers-not-available-in-ppc64-and-arm64/5974/10
- os: linux-ppc64le
arch: ppc64le
dist: bionic
env:
- CONFIGURATION=linux/ppc64le
- os: linux
arch: arm64
dist: bionic
env:
- CONFIGURATION=linux/arm64
- os: linux
arch: amd64
dist: focal
env:
- CONFIGURATION=linux/amd64
before_script:
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
- sudo ./src/runtime_src/tools/scripts/xrtdeps.sh
- cd build
before_install:
- sudo apt-get update
script: if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then ./build.sh -driver; fi