From 49f1e8f04ae8e8c5faa1f151861ba2f1670cc5c2 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Wed, 14 Mar 2018 17:49:58 +0100 Subject: [PATCH 1/4] chore: exclude appveyor.yml in production --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 688e780..da41831 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12,6 +12,7 @@ /.gitmodules export-ignore /.npmrc export-ignore /.travis.yml export-ignore +/appveyor.yml export-ignore /codecov.yml export-ignore /dependencies.yml export-ignore /Dockerfile export-ignore From ebf4c096b3ae38b341fb396c35361e3a0b8beaf6 Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Fri, 6 Apr 2018 11:07:48 -0700 Subject: [PATCH 2/4] ci(travis): use PECL to install XDebug --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 44641af..4a6ae48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,8 +31,9 @@ jobs: # Fix ruby error https://github.com/Homebrew/brew/issues/3299 - brew update - brew tap homebrew/homebrew-php - - brew install php71 - - brew install homebrew/php/php71-xdebug + - brew install php@7.1 + - brew link --force --overwrite php@7.1 + - pecl install xdebug-2.6.0 - php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" - php composer-setup.php - ln -s "`pwd`/composer.phar" /usr/local/bin/composer From 7e1ca75863dfed0c782b5bfbec85c6d70401c355 Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Sat, 21 Apr 2018 16:52:37 -0700 Subject: [PATCH 3/4] ci(travis): remove brew tap --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4a6ae48..95def1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,6 @@ jobs: before_install: # Fix ruby error https://github.com/Homebrew/brew/issues/3299 - brew update - - brew tap homebrew/homebrew-php - brew install php@7.1 - brew link --force --overwrite php@7.1 - pecl install xdebug-2.6.0 From fe33c8cd7fb962af6853a8e99aeb47d9881d13aa Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Thu, 26 Apr 2018 15:53:21 -0700 Subject: [PATCH 4/4] fix(package): include tests folder This is needed if you want to extend the buildserver and reuse tests --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index da41831..63babab 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,7 +3,6 @@ /.vscode export-ignore /fixtures export-ignore /images export-ignore -/tests export-ignore /validation export-ignore /.dockerignore export-ignore /.editorconfig export-ignore