-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy path.travis.yml
74 lines (74 loc) · 3.59 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
72
73
74
sudo: false
language: php
dist: trusty
matrix:
fast_finish: true
include:
- php: '5.4'
- php: '5.5'
- php: '5.6'
- php: '7.0'
- php: '7.1'
env:
- DEPLOY=1
- SNIFF=1
before_script:
- export PHPCS_DIR=/tmp/phpcs
- export SNIFFS_DIR=/tmp/sniffs
- if [[ "$SNIFF" == "1" ]]; then git clone -b 2.9 --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git
$PHPCS_DIR; fi
- if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git
$SNIFFS_DIR; fi
- if [[ "$SNIFF" == "1" ]]; then git clone -b 7.1.4 --depth 1 https://github.com/wimg/PHPCompatibility.git
$SNIFFS_DIR/PHPCompatibility; fi
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs --config-set installed_paths
$SNIFFS_DIR; fi
- if [[ "$SNIFF" == "1" ]]; then phpenv rehash; fi
- if [[ "$SNIFF" == "1" ]]; then npm install -g jscs; fi
- if [[ "$SNIFF" == "1" ]]; then npm install -g jshint; fi
- if [[ "$SNIFF" == "1" ]]; then wget https://develop.svn.wordpress.org/trunk/.jshintrc;
fi
- if [[ "$SNIFF" == "1" ]] || [[ "$DEPLOY" == "1" ]]; then npm install -g grunt-cli;
fi
- if [[ "$SNIFF" == "1" ]] || [[ "$DEPLOY" == "1" ]]; then npm install; fi
- if [[ "$SNIFF" == "1" ]] || [[ "$DEPLOY" == "1" ]]; then npm install -g grunt-checktextdomain;
fi
script:
- mkdir -p build/logs
- find -L . -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l
- if [[ "$SNIFF" == "1" ]]; then jshint ./assets/js/*.js; fi
- if [[ "$SNIFF" == "1" ]]; then jscs ./assets/js/*.js; fi
- if [[ "$SNIFF" == "1" ]]; then grunt textdomain; fi
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs -p -s -v -n ./*.php --standard=./phpcs.ruleset.xml
--extensions=php; fi
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs -p -s -v -n ./**/*.php --standard=./phpcs.ruleset.xml
--extensions=php --ignore=./inc/plugin-activation.php,./node_modules/*.php; fi
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs -p -s -v -n ./**/**/*.php
--standard=./phpcs.ruleset.xml --extensions=php --ignore=./node_modules/**/*.php;
fi
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs -p -s -v -n ./**/**/**/*.php
--standard=./phpcs.ruleset.xml --extensions=php --ignore=./node_modules/**/**/*.php;
fi
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs -p -s -v -n ./**/**/**/**/*.php
--standard=./phpcs.ruleset.xml --extensions=php --ignore=./node_modules/**/**/**/*.php,./**/**/epsilon-framework/**/*.php;
fi
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs -p -s -v -n ./**/**/**/**/**/*.php
--standard=./phpcs.ruleset.xml --extensions=php --ignore=./node_modules/**/**/**/**/*.php,./**/**/epsilon-framework/**/**/*.php;
fi
notifications:
email: false
cache:
directories:
- node_modules
after_success:
- grunt build-archive
- sh set_tags.sh
deploy:
provider: releases
skip_cleanup: true
api_key:
secure: c+5YqVJhwO0FNgkuXIQAFRwjR0TbJ1e2dcMrIwU33kCeoib5hH5YeI6Qd8eU3EygLkB4RSNyrgHxQWffXtHJmDsy6UQFo98TJ5wuaENUzxWJG4p+ZfGWLBV15t3C5UCL7X0vMFAuOXBqhcpd3sMvF5qPxFLU6vcizj+nxXrHUkPO1Axeu2L7sqbDeOOSr4TkNfV1HOD0B+j+0gLDA3cjI3cKmWDIxyik3dPmBCqr7XzM3I9bGQi1Mfhm75tl3UJgLqLENst8/08zM57hyO4paWTBIhJLy30MjQI2QxG9WAXAze2N5SNfNrKLo74RozEGymWBoQ34aFTsEoURGzg7B81sGvbaOHQwdnZSpoZbeclt9JanARAF8c8qf0/ipCzRcWtOV2/+BVdns+zFj67e2wGE/puIJJhvmZshssQMMci1eskRKqEP0s3CXC/ipiOANo52jT63i5muhKyNXUulLvBM7CaMY0+i1Rwa9jTVNQRu/HyeTOyRgshB2EUO3j7T2V9uYGB2ysvEFPQIDG86sY6n+D97H6hxqMgprgr5echOj0fygLORqY9Bxzy0EyONGkxPJpAYgT9Jo6KvFQ+mVNSorbSKQIAjtjjBQuw8li1JXfacNC+R0cPPsQ0BkWFIlSpW8nDCu0AFZ9ejfJmQ9aqtgfeCoc1s2NH3vQorsvI=
file: shapely.zip
on:
branch: master
repo: puikinsh/shapely