Skip to content

Commit 8506a21

Browse files
committed
Minor correction.
1 parent 02533d1 commit 8506a21

File tree

2 files changed

+9
-20
lines changed

2 files changed

+9
-20
lines changed

.gitsplit.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ cache_dir: "/cache/gitsplit"
22

33
splits:
44
- prefix: "src/Component/Core"
5-
target: "https://${GH_TOKEN}@github.com:web-token/jwt-core.git"
5+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-core.git"
66
- prefix: "src/Component/Checker"
7-
target: "https://${GH_TOKEN}@github.com:web-token/jwt-checker.git"
7+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-checker.git"
88
- prefix: "src/Component/Signature"
9-
target: "https://${GH_TOKEN}@github.com:web-token/jwt-signature.git"
9+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-signature.git"
1010
- prefix: "src/Component/Encryption"
11-
target: "https://${GH_TOKEN}@github.com:web-token/jwt-encryption.git"
11+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-encryption.git"
1212
- prefix: "src/Component/KeyManagement"
13-
target: "https://${GH_TOKEN}@github.com:web-token/jwt-key-mgmt.git"
13+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-key-mgmt.git"
1414
- prefix: "src/Component/Console"
15-
target: "https://${GH_TOKEN}@github.com:web-token/jwt-console.git"
15+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-console.git"
1616
- prefix: "src/Bundle/JoseFramework"
17-
target: "https://${GH_TOKEN}@github.com:web-token/jwt-bundle.git"
17+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-bundle.git"
1818

1919
origins:
2020
- ^master$

.travis.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ language: php
22

33
sudo: required
44

5-
services:
6-
- docker
7-
85
cache:
96
directories:
107
- "$HOME/.composer/cache"
118
- "vendor"
12-
- "/cache/gitsplit"
139

1410
matrix:
1511
allow_failures:
@@ -22,12 +18,6 @@ matrix:
2218
- php: nightly
2319
- php: 7.2
2420

25-
install:
26-
- docker pull jderusse/gitsplit
27-
- git config remote.origin.fetch "+refs/*:refs/*"
28-
- git config remote.origin.mirror true
29-
- git fetch --unshallow
30-
3121
before_script:
3222
- chmod +x ./tests/install_php_ext.sh
3323
- if [ "$TRAVIS_PHP_VERSION" = '7.1' ]; then ./tests/install_php_ext.sh; fi
@@ -37,8 +27,7 @@ before_script:
3727
- if [[ !$deps ]]; then composer install --no-interaction ; fi
3828

3929
script:
40-
- docker run --rm -t -e GH_TOKEN -v /cache/gitsplit:/cache/gitsplit -v ${PWD}:/srv jderusse/gitsplit
41-
- "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
30+
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
4231

4332
after_success:
44-
- vendor/bin/coveralls --no-interaction
33+
- ./vendor/bin/coveralls --no-interaction

0 commit comments

Comments
 (0)