This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
.travis.yml
68 lines (59 loc) · 2.31 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
language: cpp
env:
global:
secure: "VEhB0Ejwd7HRwJp/9M7ZM/C6ChX+lQICeLX+YJvItV5+Iv4q/T7RkP0nEpuWhzqpXlNY+hBSAf8zu/dgcBNBfCPPO+QSS5T8JTvLVes/e4yGbshhpmq6gmQzqf81/AdilXVSmA+PO66QnoXELmQghgIneVAY2iywGHXpFTJ1U0lFHsbf+dZfLzJ+UrkZnSxTXivzOdse6d+6Iop2a3Uv2BUMmbvskjFhNYjWHy8G8ukscQjfNWz12bnqXlT1u+V7Oe/XKrOTsQPVBw2hp+KfMeg2R4QvDSXdS8Tc8pi2gWyykmrDBvd66UEfGtewwdYwmv8cmw+d+ShVEkmy2efrlk78FvHhRfkMSwRF8P5ZU6KjldogtfS6LPhdp/k4UMim/j9p+kRDgRuGUKcV7TugrcrXh3J+5voNuKH9nMjfO9xlZPbDqahbEoNRviYQTszX+MARkwiSRRHdMCxur0bENVJYezAjR2MKs4joHD1/bm2XUAsSX0TYY/hTJA+hJVKpx8evQx6qwjW7NSaCMI1gCi5UgQIBnWwkM2fLV2ZBPs/AxZzqwUaFplvLk2SdXOOU51qn6ciBkZaCzvda7WnVp50Eybu7mKsTYYpqmNmj3o4cq5ubbjke88g0yHHLnwTtjo3EpVHgvJv37stIYS4fmmfSD1fx7C8s1EJiB2e15tE="
matrix:
allow_failures:
- name: Deploy artifacts
include:
- os: osx
name: Build
osx_image: xcode10.2
compiler: clang
script:
- ./scripts/build-ci.sh
- os: osx
name: "Analyze Coverity"
osx_image: xcode10.2
compiler: clang
before_install:
- curl -Ls https://entrust.com/root-certificates/entrust_l1k.cer -o ~/entrust_l1k.crt || exit 1
- curl -LS https://curl.haxx.se/ca/cacert.pem -o ~/cacert.pem || exit 1
- cat ~/entrust_l1k.crt >> ~/cacert.pem || exit 1
- echo "cacert=\"$HOME/cacert.pem\"" > ~/.curlrc || exit 1
- echo "ca_certificate=$HOME/cacert.pem" > ~/.wgetrc || exit 1
script:
- echo "This script runs coverity..."
addons:
coverity_scan:
project:
name: AppleIntelWifi
description: adapter build
notification_email: "$NOTIFICATION_EMAIL"
build_command_prepend: src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/Lilu/master/Lilu/Scripts/covstrap.sh)
&& eval "$src" || exit 1
build_command: xcodebuild -configuration Release
branch_pattern: master
- os: osx
name: Lint
osx_image: xcode10.2
compiler: clang
script:
- pip3 install cpplint # i hope python3 is installed lol
- ./scripts/lint.sh
- os: osx
name: Deploy artifacts
osx_image: xcode11.3
compiler: clang
addons:
homebrew:
packages:
- azure-cli
script:
- ./scripts/build-ci.sh
deploy:
provider: script
script: bash ./scripts/upload.sh
skip-cleanup: true
on:
branch: master