Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
5dd66e6f
Unverified
Commit
5dd66e6f
authored
Mar 15, 2019
by
Marco Pivetta
Committed by
GitHub
Mar 15, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3484 from morozov/stable-extensions
Use latest stable versions of sqlsrv and pdo_sqlsrv on CI
parents
77ecc637
a0b958b9
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
13 deletions
+4
-13
.appveyor.yml
.appveyor.yml
+2
-3
install-mssql-pdo_sqlsrv.sh
tests/travis/install-mssql-pdo_sqlsrv.sh
+1
-5
install-mssql-sqlsrv.sh
tests/travis/install-mssql-sqlsrv.sh
+1
-5
No files found.
.appveyor.yml
View file @
5dd66e6f
...
...
@@ -68,8 +68,7 @@ install:
Add-Content php.ini "`n extension=php_curl.dll"
Add-Content php.ini "`n curl.cainfo=C:\tools\cacert\bundle.pem"
# Get and install the latest stable sqlsrv DLL's
$DLLVersion = (Invoke-WebRequest "https://pecl.php.net/rest/r/sqlsrv/stable.txt").Content
$DLLVersion = "5.5.0preview"
cd c:\tools\php\ext
$source = "https://windows.php.net/downloads/pecl/releases/sqlsrv/$($DLLVersion)/php_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
$destination = "c:\tools\php\ext\php_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
...
...
@@ -79,7 +78,7 @@ install:
$destination = "c:\tools\php\ext\php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
Invoke-WebRequest $source -OutFile $destination
7z x -y php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip > $null
$DLLVersion =
"2.6.0"
$DLLVersion =
(Invoke-WebRequest "https://pecl.php.net/rest/r/xdebug/stable.txt").Content
$source = "https://xdebug.org/files/php_xdebug-$($DLLVersion)-$($env:php)-vc15-nts-x86_64.dll"
$destination = "c:\tools\php\ext\php_xdebug.dll"
Invoke-WebRequest $source -OutFile $destination
...
...
tests/travis/install-mssql-pdo_sqlsrv.sh
View file @
5dd66e6f
...
...
@@ -4,8 +4,4 @@ set -ex
echo
"Installing extension"
if
[
"
$TRAVIS_PHP_VERSION
"
==
"7.3"
]
||
[
"
$TRAVIS_PHP_VERSION
"
==
"nightly"
]
;
then
pecl
install
pdo_sqlsrv-5.4.0preview
else
pecl
install
pdo_sqlsrv
fi
pecl
install
pdo_sqlsrv
tests/travis/install-mssql-sqlsrv.sh
View file @
5dd66e6f
...
...
@@ -4,8 +4,4 @@ set -ex
echo
"Installing extension"
if
[
"
$TRAVIS_PHP_VERSION
"
==
"7.3"
]
||
[
"
$TRAVIS_PHP_VERSION
"
==
"nightly"
]
;
then
pecl
install
sqlsrv-5.4.0preview
else
pecl
install
sqlsrv
fi
pecl
install
sqlsrv
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment