-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.travis.yml
54 lines (43 loc) · 1.2 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
language: php
addons:
apt:
packages:
- ant
php:
- 7.2
- 7.3
sudo: false
services:
- mysql
env:
matrix:
- SHOPWARE_VERSION="5.6"
global:
- PLUGIN_NAME=WbmTagManager
- SHOPWARE_DIRECTORY=${HOME}/shopware
- PLUGIN_DIRECTORY=${SHOPWARE_DIRECTORY}/custom/plugins
cache:
directories:
- ${HOME}/.composer/cache/files
install:
- composer install
before_script:
- if [[ "$(php --version | grep -cim1 xdebug)" -ge 1 ]]; then phpenv config-rm xdebug.ini; fi
- git clone https://github.com/shopware/shopware.git ${SHOPWARE_DIRECTORY} --branch ${SHOPWARE_VERSION}
- ant -f ${SHOPWARE_DIRECTORY}/build/build.xml -Dapp.host=localhost -Ddb.user=travis -Ddb.host=127.0.0.1 -Ddb.name=shopware build-unit
- mv ${TRAVIS_BUILD_DIR} ${PLUGIN_DIRECTORY}/${PLUGIN_NAME}
- php ${HOME}/shopware/bin/console sw:plugin:refresh
- php ${HOME}/shopware/bin/console sw:plugin:install ${PLUGIN_NAME}
- php ${HOME}/shopware/bin/console sw:plugin:activate ${PLUGIN_NAME}
- cd ${PLUGIN_DIRECTORY}/${PLUGIN_NAME}
script:
- composer test
after_success:
- ./build.sh
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: WbmTagManager*.zip
on:
tags: true