Skip to content

Commit

Permalink
Updated docs and repo config
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Nov 19, 2017
1 parent e05b644 commit 6f598dd
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 44 deletions.
15 changes: 6 additions & 9 deletions .gitattributes
@@ -1,13 +1,10 @@
docs/* linguist-documentation

*.zep.h linguist-language=C
*.zep.c linguist-language=C
*.sql linguist-language=SQL
*.w32 linguist-language=JavaScript

*.sql linguist-language=SQL

*.w32 linguist-language=JavaScript

ext/* linguist-vendored
build/* linguist-vendored
ext/* linguist-vendored
build/php5/* linguist-vendored
build/php7/* linguist-vendored

*.png binary
*.png binary
45 changes: 15 additions & 30 deletions .gitignore
Expand Up @@ -6,64 +6,49 @@
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore

ext/ltmain.sh
ext/.deps
ext/Makefile
ext/Makefile.fragments
ext/Makefile.global
ext/Makefile.objects
ext/acinclude.m4
ext/aclocal.m4
ext/autom4te.cache/
ext/build/
ext/config.guess
ext/config.h
ext/config.h.in
ext/config.nice
ext/config.status
ext/config.sub
ext/config/.libs/
ext/config/adapter/.libs/
ext/configure
ext/configure.in
ext/install-sh
ext/libtool
ext/missing
ext/mkinstalldirs
ext/modules/
ext/phalcon.la
ext/run-tests.php

*~
*.o
*.out
*.lo
*.la
*.log
*.loT
*.gch
/.libs
/ext/.libs
*~
.temp/
composer.lock
ext/phalcon/mvc/view/engine/volt/lemon
ext/phalcon/mvc/view/engine/volt/lemon.dSYM/
ext/phalcon/mvc/view/engine/volt/parser.out
ext/phalcon/annotations/lemon
ext/phalcon/annotations/lemon.dSYM/
ext/phalcon/annotations/parser.out
ext/phalcon/mvc/model/query/lemon
ext/phalcon/mvc/model/query/parser.out
/vendor/
ext/phalcon/annotations/parser.php5.out
ext/phalcon/annotations/parser.php7.out
ext/phalcon/mvc/view/engine/volt/parser.php5.out
ext/phalcon/mvc/view/engine/volt/parser.php7.out
ext/phalcon/mvc/model/query/parser.php5.out
ext/phalcon/mvc/model/query/parser.php7.out
ext/phalcon/mvc/model/query/.libs/

build/gccarch
*.ghc
*.h.ghc
*.phc
*.dSYM
*.deps
lemon

.libs/
.temp/
autom4te.cache/
vendor/
ide/
docker-compose.yml

composer.lock
php_test_results_*.txt
docker-compose.yml
build/gccarch
15 changes: 10 additions & 5 deletions .travis.yml
Expand Up @@ -46,8 +46,13 @@ env:
- PATH="$PATH:$HOME/bin"
- ZEPHIR_PARSER_VERSION="v1.1.1"
- RE2C_VERSION="1.0.3"
# Uncomment for debug
#- ZEND_DONT_UNLOAD_MODULES=1
# Generating a valgrind log
# For more see: https://bugs.php.net/bugs-getting-valgrind-log.php
#
# Uncomment to correctly show the stack frames for extensions compiled as shared libraries
# - ZEND_DONT_UNLOAD_MODULES=1
# Uncomment to disable Zend memory manager before running PHP with valgrind
# - USE_ZEND_ALLOC=0

before_install:
- if [[ ! -z "${GH_TOKEN}" ]]; then composer config github-oauth.github.com ${GH_TOKEN}; echo "Configured Github token"; fi;
Expand Down Expand Up @@ -106,8 +111,8 @@ install:
- $(phpenv which php) --ri phalcon

before_script:
# Uncomment for debug
# - ulimit -c unlimited -S || true
- ulimit -c unlimited -S || true
# Uncomment for debug purposes
# - echo '/tmp/core_%e.%p' | sudo tee /proc/sys/kernel/core_pattern &> /dev/null
# attempt to workaroung "ptrace: Operation not permitted"
# - sudo chmod +s $(which gdb)
Expand Down Expand Up @@ -145,7 +150,7 @@ script:
vendor/bin/codecept run -v -n tests/unit5x/;
fi
# Uncomment for debug
# Uncomment for debug purposes
# after_failure:
# - bash tests/_ci/after_failure.sh

Expand Down

0 comments on commit 6f598dd

Please sign in to comment.