Skip to content

Commit 90db448

Browse files
committed
update travis for new PhpStorm 2016.1 environment dependencies
1 parent 0ed9457 commit 90db448

File tree

2 files changed

+7
-31
lines changed

2 files changed

+7
-31
lines changed

.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
sudo: false
22
language: java
33
jdk:
4-
- openjdk6
5-
- openjdk7
64
- oraclejdk8
75

86
script: "./travis.sh"
@@ -13,6 +11,4 @@ before_script:
1311
- chmod +x travis.sh
1412

1513
env:
16-
- PHPSTORM_ENV=8
17-
- PHPSTORM_ENV=9
18-
- PHPSTORM_ENV=10
14+
- PHPSTORM_ENV=2016.1

travis.sh

+6-26
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
ideaVersion="14.1.6"
3+
ideaVersion="2016.1"
44
if [ "$PHPSTORM_ENV" == "10" ]; then
55
ideaVersion="15.0.4"
66
elif [ "$PHPSTORM_ENV" == "eap" ]; then
@@ -54,35 +54,15 @@ if [ -d ./plugins ]; then
5454
echo "created plugin dir"
5555
fi
5656

57-
if [ "$PHPSTORM_ENV" == "8" ]; then
57+
if [ "$PHPSTORM_ENV" == "2016.1" ]; then
5858

5959
#php
60-
download "https://plugins.jetbrains.com/files/6610/20075/php-141.1534.zip"
61-
unzip -qo $travisCache/php-141.1534.zip -d ./plugins
60+
download "https://plugins.jetbrains.com/files/6610/24752/php-145.258.2.zip"
61+
unzip -qo $travisCache/php-145.258.2.zip -d ./plugins
6262

6363
#twig
64-
download "http://plugins.jetbrains.com/files/7303/17519/twig-139.58.zip"
65-
unzip -qo $travisCache/twig-139.58.zip -d ./plugins
66-
67-
elif [ "$PHPSTORM_ENV" == "9" ]; then
68-
69-
#php
70-
download "http://plugins.jetbrains.com/files/6610/20930/php-141.2462.zip"
71-
unzip -qo $travisCache/php-141.2462.zip -d ./plugins
72-
73-
#twig
74-
download "http://plugins.jetbrains.com/files/7303/20774/twig-141.2325.zip"
75-
unzip -qo $travisCache/twig-141.2325.zip -d ./plugins
76-
77-
elif [ "$PHPSTORM_ENV" == "10" ]; then
78-
79-
#php
80-
download "http://plugins.jetbrains.com/files/6610/22827/php-143.1184.87.zip"
81-
unzip -qo $travisCache/php-143.1184.87.zip -d ./plugins
82-
83-
#twig
84-
download "http://plugins.jetbrains.com/files/7303/22048/twig-143.381.48.zip"
85-
unzip -qo $travisCache/twig-143.381.48.zip -d ./plugins
64+
download "https://plugins.jetbrains.com/files/7303/24757/twig-145.258.2.zip"
65+
unzip -qo $travisCache/twig-145.258.2.zip -d ./plugins
8666

8767
elif [ "$PHPSTORM_ENV" == "eap" ]; then
8868

0 commit comments

Comments
 (0)