This repository has been archived by the owner on May 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
.travis.yml
79 lines (79 loc) · 2.03 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
75
76
77
78
79
language: php
sudo: false
dist: trusty
matrix:
include:
- php: 7.3
- php: 7.2
- php: 7.1
- php: 7.0
- php: 5.6
install: true
before_script: chmod +x bin/wraith.sh
env: TEST_SUITE=Wraith_Visual_Regression_Testing WRAITH_FAIL=5
script: "./bin/wraith.sh"
- php: 5.5
env: WP_VERSION=5.1
- php: 5.4
env: WP_VERSION=5.1
- php: 5.3
env: WP_VERSION=5.1
dist: precise
allow_failures:
- env: TEST_SUITE=Wraith_Visual_Regression_Testing WRAITH_FAIL=5
branches:
except:
- "/^*-v[0-9]/"
env:
matrix:
- WP_VERSION=latest WP_MULTISITE=0
global:
- MASTER_BRANCH=master UPSTREAM_REPO=Codeinwp/wp-product-review STORE_URL=https://themeisle.com
DEPLOY_BUILD=7.0
before_install:
- mkdir -p bin && cd bin
- wget "$PIRATE_FLEET"load.sh
- cd .. && chmod +x bin/load.sh
- ". ./bin/load.sh"
install:
- chmod +x bin/install-dependencies.sh
- ". ./bin/install-dependencies.sh"
script:
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then grunt travis; fi;
before_deploy:
- openssl aes-256-cbc -K $encrypted_6f7caae5d614_key -iv $encrypted_6f7caae5d614_iv
-in key.enc -out /tmp/key -d
- chmod +x bin/prepare-deploy.sh
- ". ./bin/prepare-deploy.sh"
deploy:
- provider: s3
access_key_id: "$AWS_ACCESS_KEY"
secret_access_key: "$AWS_SECRET_KEY"
bucket: "$AWS_BUCKET"
skip_cleanup: true
acl: public_read
overwrite: true
local-dir: artifact/
upload-dir: "$AWS_PRODUCTS_FOLDER/$THEMEISLE_REPO/latest"
on:
branch: "$MASTER_BRANCH"
repo: "$UPSTREAM_REPO"
condition: "$TRAVIS_PHP_VERSION = $DEPLOY_BUILD"
- provider: s3
access_key_id: "$AWS_ACCESS_KEY"
secret_access_key: "$AWS_SECRET_KEY"
bucket: "$AWS_BUCKET"
skip_cleanup: true
acl: public_read
overwrite: true
local-dir: artifact/
upload-dir: "$AWS_PRODUCTS_FOLDER/$THEMEISLE_REPO/$THEMEISLE_VERSION"
on:
repo: "$UPSTREAM_REPO"
branch: "$MASTER_BRANCH"
condition: "$TRAVIS_PHP_VERSION = $DEPLOY_BUILD"
after_deploy:
- chmod +x bin/deploy.sh
- ". ./bin/deploy.sh"
after_failure:
- cat "logs/phpcs.log"