Add a folder for travis.

This commit is contained in:
Andreas Fischer 2014-01-22 03:26:42 +01:00
parent 211e237090
commit 0a639cd7f5
3 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ php:
env: env:
global: global:
# Defines CODE_COVERAGE_PASSPHRASE which is the passphrase for unlocking # Defines CODE_COVERAGE_PASSPHRASE which is the passphrase for unlocking
# the tests/code_coverage_id_rsa RSA private key. # the travis/code_coverage_id_rsa RSA private key.
- secure: "jtQTZKQBnzUlp/jz7NlM6470ZDnLGVAs53sgvIm4tcYqf9TWSXSXjIYvFsrS\nKPR2eyZaAevYysUkIGRFTUXTlG6tC36YngMp9+6FPxASl8mnGXsTbKcm613B\n59vD3242pgIgqhhmgFQ0c8gbvnE8PuF2aS4/hluP3r+AxhWN56E=" - secure: "jtQTZKQBnzUlp/jz7NlM6470ZDnLGVAs53sgvIm4tcYqf9TWSXSXjIYvFsrS\nKPR2eyZaAevYysUkIGRFTUXTlG6tC36YngMp9+6FPxASl8mnGXsTbKcm613B\n59vD3242pgIgqhhmgFQ0c8gbvnE8PuF2aS4/hluP3r+AxhWN56E="
before_script: before_script:
@ -23,4 +23,4 @@ script:
- phpunit --verbose --coverage-text --coverage-html code_coverage/ - phpunit --verbose --coverage-text --coverage-html code_coverage/
after_success: after_success:
- sh -c "if $TRAVIS_SECURE_ENV_VARS; then tests/code_coverage_upload.sh; fi" - sh -c "if $TRAVIS_SECURE_ENV_VARS; then travis/upload-code-coverage.sh; fi"

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# This file is part of the phpseclib test suite. # This file is part of the phpseclib project.
# #
# (c) Andreas Fischer <bantu@phpbb.com> # (c) Andreas Fischer <bantu@phpbb.com>
# #
@ -13,7 +13,7 @@ HOSTNAME='phpseclib.bantux.org'
HOSTRSAF='09:40:96:14:6a:cd:67:46:17:e5:b4:39:24:24:6e:9d' HOSTRSAF='09:40:96:14:6a:cd:67:46:17:e5:b4:39:24:24:6e:9d'
LDIRNAME='code_coverage' LDIRNAME='code_coverage'
RDIRNAME='code_coverage' RDIRNAME='code_coverage'
ID_RSA='tests/code_coverage_id_rsa' ID_RSA='travis/code_coverage_id_rsa'
# Install expect if necessary # Install expect if necessary
if ! which expect > /dev/null if ! which expect > /dev/null