Skip to content

Commit f2eea21

Browse files
committed
Fix nightly setup
1 parent 8f96481 commit f2eea21

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ cache:
88
sudo: false
99

1010
install:
11-
- travis_retry composer update --prefer-dist --prefer-stable --no-interaction --no-suggest
11+
- if [[ $setup = 'nightly' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --ignore-platform-reqs; fi
12+
- if [[ $setup = 'basic' ]]; then travis_retry composer update --prefer-dist --prefer-stable --no-interaction --no-suggest; fi
1213

1314
before_script:
1415
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
@@ -23,6 +24,7 @@ after_success:
2324

2425
env:
2526
global:
27+
- setup=basic
2628
- CC_TEST_REPORTER_ID=a706e45a0731ff71fe03470fefba2e1469a856018f131d0aee0be3f26ec4fc16
2729

2830
branches:
@@ -36,3 +38,4 @@ matrix:
3638
- php: '7.2'
3739
- php: '7.3'
3840
- php: nightly
41+
env: setup=nightly

0 commit comments

Comments
 (0)