forked from manuelselbach/static_info_tables_fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
65 lines (58 loc) · 1.81 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
language: php
matrix:
include:
- php: 5.6
env: TYPO3_VERSION=^7.6
- php: 7
env: TYPO3_VERSION=^7.6
- php: 7
env: TYPO3_VERSION=^8.6
- php: 7.1
env: TYPO3_VERSION=^8.6
- php: 7
env: TYPO3_VERSION=dev-master
- php: 7.1
env: TYPO3_VERSION=dev-master
allow_failures:
- env: TYPO3_VERSION=dev-master
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
- composer self-update
- composer --version
before_script:
- >
if [ -n "$TRAVIS_TAG" ]; then
composer set-version $TRAVIS_TAG
# If this fails, we forgot to update version numbers before tagging the release
test -z "$(git diff --shortstat 2> /dev/null | tail -n1)";
fi
- composer require typo3/cms=$TYPO3_VERSION
- export TYPO3_PATH_WEB="$PWD/.Build/Web"
script:
- >
echo;
echo "Running unit tests";
.Build/bin/phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit/
- >
echo;
echo "Executing PHP code sniffer";
.Build/bin/phpcs --runtime-set ignore_warnings_on_exit true --standard=PSR2 Classes/
after_script:
- >
echo;
echo "Everything done";
- >
if [ -n "$TRAVIS_TAG" ] && [ -n "$TYPO3_ORG_USERNAME" ] && [ -n "$TYPO3_ORG_PASSWORD" ]; then
echo -e "Preparing upload of release ${TRAVIS_TAG} to TER\n"
curl -sSL https://raw.githubusercontent.com/alrra/travis-after-all/1.4.4/lib/travis-after-all.js | node
if [ $? -eq 0 ]; then
# Cleanup before we upload
git reset --hard HEAD && git clean -fx
TAG_MESSAGE=`git tag -n10 -l $TRAVIS_TAG | sed 's/^[0-9.]*[ ]*//g'`
echo "Uploading release ${TRAVIS_TAG} to TER"
.Build/bin/upload . "$TYPO3_ORG_USERNAME" "$TYPO3_ORG_PASSWORD" "$TAG_MESSAGE"
fi;
fi;