-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
73 lines (62 loc) · 1.69 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
language: php
sudo: false
addons:
apt:
packages:
- parallel
cache:
directories:
- $HOME/.composer/cache
before_install:
- if php -i | grep -q xdebug; then phpenv config-rm xdebug.ini; fi
install:
- composer install
- export TYPO3_PATH_WEB=$PWD/.Build/Web
script:
- >
echo;
echo "Running unit tests";
echo;
echo;
.Build/bin/phpunit -c .Build/vendor/typo3/cms/typo3/sysext/core/Build/UnitTests.xml Tests/Unit
- >
echo;
echo "Running php lint";
echo;
echo;
find . -name \*.php ! -path "./.Build/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;
jobs:
fast_finish: true
include:
- stage: test
php: 7
- stage: test
php: 5.6
- stage: test
php: 5.5
- stage: publish to ter
if: tag IS present
php: 7.1
before_install: skip
install: skip
before_script: skip
script:
- |
if [ -n "$TRAVIS_TAG" ] && [ -n "$TYPO3_ORG_USERNAME" ] && [ -n "$TYPO3_ORG_PASSWORD" ]; then
# Install requirements
echo
echo "Preparing upload of release ${TRAVIS_TAG} to TER"
echo
echo
composer install
composer require --dev helhum/ter-client dev-master
# Cleanup before we upload
git reset --hard HEAD && git clean -fx
# Upload
TAG_MESSAGE=`git tag -n10 -l $TRAVIS_TAG | sed 's/^[0-9.]*[ ]*//g'`
echo
echo "Uploading release ${TRAVIS_TAG} to TER"
echo
echo
.Build/bin/ter-client upload compatibility6 . -u "$TYPO3_ORG_USERNAME" -p "$TYPO3_ORG_PASSWORD" -m "$TAG_MESSAGE"
fi;