RandomSec/appveyor.yml

52 lines
1.3 KiB
YAML
Raw Normal View History

2017-12-24 06:06:09 +01:00
version: 1.0.{build}
2018-01-04 20:50:57 +01:00
2018-01-27 18:48:43 +01:00
services:
- mysql
2018-01-27 19:08:04 +01:00
- postgresql96
2018-01-27 18:48:43 +01:00
2018-01-04 20:50:57 +01:00
init:
- cmd: java -version 2>&1 | find "version"
2018-01-27 18:48:43 +01:00
clone_depth: 5
skip_branch_with_pr: true
2017-12-24 06:06:09 +01:00
environment:
ANT_HOME: C:\apache-ant-1.10.1
JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0
2018-01-04 21:44:40 +01:00
matrix:
fast_finish: true
2017-12-24 06:06:09 +01:00
install:
2017-12-29 05:24:34 +01:00
- cmd: if not exist %ANT_HOME% pushd . && cd \ && appveyor DownloadFile http://apache.spinellicreations.com/ant/binaries/apache-ant-1.10.1-bin.zip && 7z x apache-ant-1.10.1-bin.zip && popd
2017-12-24 06:06:09 +01:00
cache:
- C:\apache-ant-1.10.1
- apache-ant-1.10.1-bin.zip
build: off
2018-01-04 20:38:34 +01:00
2018-01-27 18:48:43 +01:00
# scripts to run before test
before_test:
2018-01-04 20:50:57 +01:00
- cmd: echo Running scripts before build...
2018-01-27 18:48:43 +01:00
- cmd: |-
2018-01-27 19:16:19 +01:00
PATH=C:\Program Files\PostgreSQL\9.6\bin\;C:\Program Files\MySQL\MySQL Server 5.7\bin\;%PATH%
2018-01-27 19:08:04 +01:00
SET MYSQL_PWD="Password12!"
mysql -u root --password=Password12! -e "create database test_db;"
mysql -u root test_db --password=Password12! < extensions\database\test\conf\travis-mysql.sql
SET PGUSER="postgres"
SET PGPASSWORD="Password12!"
2018-01-27 19:24:09 +01:00
createdb test_db
psql -U postgres test_db < extensions\database\test\conf\travis-pgsql.sql
2018-01-27 18:48:43 +01:00
copy extensions\database\test\conf\appveyor_int_tests.xml extensions\database\test\conf\int_tests.xml
2018-01-27 18:03:53 +01:00
2017-12-24 06:06:09 +01:00
test_script:
2018-01-04 20:50:57 +01:00
- cmd: echo Running test_script...
2017-12-24 06:06:09 +01:00
- cmd: >-
echo PATH is:
path
refine server_test
2018-01-27 18:48:43 +01:00
2018-01-03 19:32:22 +01:00
refine extensions_test