-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (30 loc) · 730 Bytes
/
.travis.yml
File metadata and controls
34 lines (30 loc) · 730 Bytes
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
language: shell
sudo: false
notifications:
email:
on_success: never
branches:
only: master
before_install:
- |
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(^\.(git|appveyor))|(^(LICENSE|docs))'
then
echo "Only build non-relevant files were updated, not running the CI."
exit
fi
matrix:
fast_finish: true
include:
- os: linux # Linux
dist: xenial
addons:
apt:
update: true
packages: nsis
install: true
script: makensis -V3 bdelock.nsi
- os: windows # Windows
filter_secrets: false
env: PATH="/c/Program Files (x86)/NSIS/:/c/Program Files/NSIS/:$PATH"
install: choco install nsis -y
script: makensis -V3 bdelock.nsi