Skip to content

Commit 54e3c49

Browse files
Merge branch 'master' into pdo_mysql_dsn_credentials_support
2 parents cc3f7b1 + 54e7acd commit 54e3c49

File tree

15,583 files changed

+481131
-951825
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

15,583 files changed

+481131
-951825
lines changed

.appveyor.yml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
version: "{branch}.build.{build}"
32

43
image: Visual Studio 2017
@@ -8,23 +7,16 @@ branches:
87
- PHP-5.6
98
- PHP-7.0
109

11-
skip_commits:
12-
files:
13-
- NEWS
14-
- UPGRADING*
15-
- README.*
16-
1710
clone_depth: 64
1811

1912
cache:
2013
- c:\build-cache
21-
- c:\build-cache\sdk -> .appveyor.yml
2214

2315
environment:
24-
PHP_BUILD_CACHE_BASE_DIR: c:\build-cache
16+
PHP_BUILD_CACHE_BASE_DIR: c:\build-cache
2517
PHP_BUILD_OBJ_DIR: c:\obj
2618
PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
27-
PHP_BUILD_SDK_BRANCH: php-sdk-2.0.9
19+
PHP_BUILD_SDK_BRANCH: php-sdk-2.2.0beta5
2820
PHP_BUILD_CRT: vc15
2921
# ext and env setup for tests
3022
#MYSQL_TEST_PASSWD: Password12!
@@ -38,13 +30,17 @@ environment:
3830
matrix:
3931
- THREAD_SAFE: 0
4032
OPCACHE: 0
33+
PARALLEL: -j2
4134
- THREAD_SAFE: 1
4235
OPCACHE: 1
36+
PARALLEL:
37+
INTRINSICS: AVX
4338

4439
services:
4540
# the setup scripts have to be touched, once some other db version is used
4641
- mysql
47-
- postgresql96
42+
- postgresql101
43+
- mssql2017
4844

4945
platform:
5046
- x64
@@ -55,4 +51,3 @@ build_script:
5551

5652
test_script:
5753
- appveyor\test.bat
58-

.editorconfig

Lines changed: 37 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,47 @@
1-
; http://editorconfig.org/
1+
# https://editorconfig.org/
22

33
root = true
44

5-
[*.{c,h}]
6-
charset = UTF-8
7-
end_of_line = LF
5+
[*]
6+
tab_width = 4
7+
8+
[*.{c,h,y,awk,w32,bat,mk,frag,cpp}]
9+
charset = utf-8
10+
end_of_line = lf
811
indent_size = 4
912
indent_style = tab
13+
trim_trailing_whitespace = true
1014
insert_final_newline = true
11-
tab_width = 4
15+
16+
[*.{php,phpt,inc}]
17+
charset = utf-8
18+
end_of_line = lf
19+
indent_size = 4
20+
indent_style = space
1221
trim_trailing_whitespace = true
22+
insert_final_newline = true
1323

14-
[*.yml]
24+
[*.{yml,m4,sh}]
25+
charset = utf-8
26+
end_of_line = lf
1527
indent_size = 2
1628
indent_style = space
29+
trim_trailing_whitespace = true
30+
insert_final_newline = true
31+
32+
[*.md]
33+
charset = utf-8
34+
end_of_line = lf
35+
indent_style = space
36+
trim_trailing_whitespace = true
37+
insert_final_newline = true
38+
max_line_length = 80
39+
40+
[COMMIT_EDITMSG]
41+
charset = utf-8
42+
end_of_line = lf
43+
indent_size = 4
44+
indent_style = space
45+
trim_trailing_whitespace = true
46+
insert_final_newline = true
47+
max_line_length = 80

0 commit comments

Comments
 (0)