Skip to content

Commit

Permalink
Build - Specify patch level
Browse files Browse the repository at this point in the history
  • Loading branch information
nibra committed Jan 8, 2021
1 parent abc3473 commit b8e0f32
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .appveyor.yml
Expand Up @@ -17,12 +17,12 @@ cache:
## Build matrix for lowest and highest possible targets
environment:
matrix:
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4
- php: 5.6.40
- php: 7.0.33
- php: 7.1.33
- php: 7.2.34
- php: 7.3.26
- php: 7.4.14

init:
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;C:\tools\composer;%PATH%
Expand All @@ -34,10 +34,10 @@ install:
- ps: |
# Check if installation is cached
if (!(Test-Path c:\tools\php)) {
If ($env:php -eq "5.6") {
appveyor-retry cinst php --version=$env:php --package-parameters='"/ThreadSafe ""/InstallDir:C:\tools\php""' --ignore-checksums -y --limit-output --forcex86
If ($env:php -eq "5.6.40") {
appveyor-retry cinst php --version=$env:php --package-parameters='""/InstallDir:C:\tools\php""' --ignore-checksums -y --limit-output --forcex86
} Else {
appveyor-retry cinst php --version=$env:php --package-parameters='"/ThreadSafe ""/InstallDir:C:\tools\php""' --ignore-checksums -y --limit-output
appveyor-retry cinst php --version=$env:php --package-parameters='""/InstallDir:C:\tools\php""' --ignore-checksums -y --limit-output
}
Get-ChildItem -Path c:\tools\php
Expand Down

0 comments on commit b8e0f32

Please sign in to comment.