forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
79 lines (70 loc) · 3.41 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
build: false
shallow_clone: false
platform: 'x86'
clone_folder: C:\projects\work
branches:
only:
- 11.x
## Cache composer bits
cache:
- '%LOCALAPPDATA%\Composer\files -> composer.lock'
services:
- mysql
init:
#https://github.com/composer/composer/blob/master/appveyor.yml
#- SET ANSICON=121x90 (121x90)
# Inspired by https://github.com/Codeception/base/blob/master/appveyor.yml and https://github.com/phpmd/phpmd/blob/master/appveyor.yml
install:
- ps: Set-Service wuauserv -StartupType Manual
- git clone -q https://github.com/acquia/DevDesktopCommon.git #For tar, cksum, ...
- SET PATH=%APPVEYOR_BUILD_FOLDER%/DevDesktopCommon/bintools-win/msys/bin;%PATH%
- SET PATH=C:\Program Files\MySql\MySQL Server 5.7\bin\;%PATH%
- choco search php --exact --all-versions -r
#Install PHP per https://blog.wyrihaximus.net/2016/11/running-php-unit-tests-on-windows-using-appveyor-and-chocolatey/
- ps: appveyor-retry cinst --limit-output --ignore-checksums -y php --version 7.4.27
- cd c:\tools\php74
- copy php.ini-production php.ini
# https://github.com/php-coveralls/php-coveralls/pull/223/files
# - appveyor DownloadFile https://curl.se/ca/cacert.pem -FileName C:\cacert.pem
- curl -fsS -o C:\cacert.pem https://curl.se/ca/cacert.pem
- echo curl.cainfo=C:\cacert.pem >> php.ini
- echo extension_dir=ext >> php.ini
- echo extension=php_openssl.dll >> php.ini
- echo date.timezone="UTC" >> php.ini
- echo variables_order="EGPCS" >> php.ini #May be unneeded.
- echo mbstring.http_input=pass >> php.ini
- echo mbstring.http_output=pass >> php.ini
- echo sendmail_path=nul >> php.ini
- echo extension=php_mbstring.dll >> php.ini
- echo extension=php_curl.dll >> php.ini
- echo extension=php_pdo_mysql.dll >> php.ini
- echo extension=php_pdo_pgsql.dll >> php.ini
- echo extension=php_pdo_sqlite.dll >> php.ini
- echo extension=php_pgsql.dll >> php.ini
- echo extension=php_gd2.dll >> php.ini
- echo extension=php_fileinfo.dll >> php.ini
- echo memory_limit=256M >> php.ini
- SET PATH=C:\tools\php74;%PATH%
#Install Composer
- cd %APPVEYOR_BUILD_FOLDER%
#- appveyor DownloadFile https://getcomposer.org/composer.phar
- php -r "readfile('http://getcomposer.org/installer');" | php
- echo @php %cd%\composer.phar %%* > composer.bat
# Install dependencies via Composer.
- php composer.phar install --prefer-dist -n
- SET PATH=%APPVEYOR_BUILD_FOLDER%;%APPVEYOR_BUILD_FOLDER%/vendor/bin;%PATH%
# Uncomment this and on_finish line below to enable RDP into build machine https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
test_script:
- vendor/bin/phpunit --colors=always --configuration tests --testsuite functional --debug
- vendor/bin/phpunit --colors=always --configuration tests --testsuite integration --debug
- vendor/bin/phpunit --colors=always --configuration tests --testsuite unit --debug
on_finish:
# Uncomment this and above line to enable RDP into build machine https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# environment variables
environment:
global:
# php_ver_target: 7.3
UNISH_DB_URL: "mysql://root:Password12!@localhost"
APPVEYOR_RDP_PASSWORD: un1sh@Windows