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
d4b5b619
Unverified
Commit
d4b5b619
authored
Dec 18, 2019
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test against PHP 7.4 on AppVeyor
parent
3b13a7e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
.appveyor.yml
.appveyor.yml
+6
-6
No files found.
.appveyor.yml
View file @
d4b5b619
...
@@ -21,17 +21,17 @@ environment:
...
@@ -21,17 +21,17 @@ environment:
-
db
:
mssql
-
db
:
mssql
driver
:
sqlsrv
driver
:
sqlsrv
db_version
:
sql2012sp1
db_version
:
sql2012sp1
php
:
7.
3
php
:
7.
4
coverage
:
yes
coverage
:
yes
-
db
:
mssql
-
db
:
mssql
driver
:
sqlsrv
driver
:
sqlsrv
db_version
:
sql2017
db_version
:
sql2017
coverage
:
no
coverage
:
no
php
:
7.
3
php
:
7.
4
-
db
:
mssql
-
db
:
mssql
driver
:
pdo_sqlsrv
driver
:
pdo_sqlsrv
db_version
:
sql2017
db_version
:
sql2017
php
:
7.
3
php
:
7.
4
coverage
:
yes
coverage
:
yes
init
:
init
:
...
@@ -44,7 +44,7 @@ install:
...
@@ -44,7 +44,7 @@ install:
-
ps
:
|
-
ps
:
|
# Check if installation is cached
# Check if installation is cached
if (!(Test-Path c:\tools\php)) {
if (!(Test-Path c:\tools\php)) {
appveyor-retry cinst --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version
7.3.12
appveyor-retry cinst --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version
((choco search php --exact --all-versions -r | select-string -pattern $env:php | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','')
# install sqlite
# install sqlite
appveyor-retry cinst -y sqlite
appveyor-retry cinst -y sqlite
Get-ChildItem -Path c:\tools\php
Get-ChildItem -Path c:\tools\php
...
@@ -63,8 +63,8 @@ install:
...
@@ -63,8 +63,8 @@ install:
Add-Content php.ini "`n extension=php_curl.dll"
Add-Content php.ini "`n extension=php_curl.dll"
Add-Content php.ini "`n curl.cainfo=C:\tools\cacert\bundle.pem"
Add-Content php.ini "`n curl.cainfo=C:\tools\cacert\bundle.pem"
#
Get and install the latest stable sqlsrv DLL's
#
Use a preview version of the extension that supports PHP 7.4
$DLLVersion =
(Invoke-WebRequest "https://pecl.php.net/rest/r/sqlsrv/stable.txt").Content
$DLLVersion =
"5.7.1preview"
cd c:\tools\php\ext
cd c:\tools\php\ext
$source = "https://windows.php.net/downloads/pecl/releases/sqlsrv/$($DLLVersion)/php_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
$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"
$destination = "c:\tools\php\ext\php_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
...
...
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