-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade CI #4
Upgrade CI #4
Conversation
Fix problems detected by @phpstan
.travis.yml
Outdated
@@ -17,20 +17,18 @@ cache: | |||
directories: | |||
- $HOME/.composer/cache | |||
|
|||
before_script: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
before_script: is really install:
.travis.yml
Outdated
@@ -17,20 +17,18 @@ cache: | |||
directories: | |||
- $HOME/.composer/cache | |||
|
|||
before_script: | |||
# Initialise Composer | |||
- composer self-update -q |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Composer is up-to-date in Travis images
.travis.yml
Outdated
before_script: | ||
# Initialise Composer | ||
- composer self-update -q | ||
- composer global require hirak/prestissimo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use Composer cache: parallel downloads are good but helps less than it takes to install hirak/prestissimo
.travis.yml
Outdated
# Installing code coverage tools | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- ./cc-test-reporter before-build | ||
|
||
script: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
after_script: comes :) after script:
plus some speedups!