RandomSec/appveyor.yml

55 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
init:
- cmd: java -version 2>&1 | find "version"
2017-12-24 06:06:09 +01:00
clone_script:
- cmd: git clone --recursive https://github.com/OpenRefine/OpenRefine
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
# scripts to run before build
before_build:
2018-01-04 20:50:57 +01:00
- cmd: echo Running scripts before build...
2018-01-27 18:03:53 +01:00
- cmd: cp extensions\database\test\conf\appveyor_int_tests.xml extensions\database\test\conf\int_tests.xml
- cmd: >-
$env:MYSQL_PWD="password"
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql" -e "create database test_db;" --user=root'
iex "& $cmd"
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql" -u root test_db < extensions/database/test/conf/travis-mysql.sql'
iex "& $cmd"
2018-01-04 20:38:34 +01:00
2018-01-04 21:44:40 +01:00
build_script:
# - cmd: >-
# echo Running refine build...
#
# cd OpenRefine
#
# refine build
2018-01-04 21:44:40 +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
cd OpenRefine
refine server_test
2018-01-04 21:45:11 +01:00
2018-01-03 19:32:22 +01:00
refine extensions_test