forked from neos/redirecthandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
23 lines (22 loc) · 920 Bytes
/
.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
language: php
sudo: false
git:
depth: 5
submodules: false
matrix:
include:
- php: 7.3
before_install:
- git checkout -b build
- export FLOW_TARGET_VERSION=7.0
- cd ..
- git clone https://github.com/neos/flow-base-distribution.git -b ${FLOW_TARGET_VERSION}
- cd flow-base-distribution
- composer config repositories.redirecthandler path ../redirecthandler
- composer require --no-update --no-interaction neos/redirecthandler:"dev-build as dev-main"
- composer require --no-update --no-interaction neos/redirecthandler-databasestorage:dev-main
install:
- composer install --no-interaction
script:
- bin/phpunit --colors -c Build/BuildEssentials/PhpUnit/UnitTests.xml Packages/Application/Neos.RedirectHandler/Tests/Unit
- bin/phpunit --colors -c Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/Neos.RedirectHandler/Tests/Functional/*