This repository has been archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
74 lines (73 loc) · 1.76 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
language: php
sudo: false
jobs:
fast_finish: true
include:
- php: 7.2
- php: 7.1
- php: 7.0
- php: 5.6
- 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
branches:
except:
- /^*-v[0-9]/
env:
matrix:
- WP_VERSION=latest WP_MULTISITE=0
global:
- MASTER_BRANCH=master UPSTREAM_REPO=Codeinwp/intergeo-maps 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_90f80cca920c_key -iv $encrypted_90f80cca920c_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"
- cat "logs/jslogs.log"