rebuild/.travis.yml

16 lines
503 B
YAML
Raw Normal View History

2018-12-31 02:26:31 +08:00
language: java
2019-01-06 03:17:00 +08:00
sudo: false
2019-01-26 16:05:45 +08:00
script: mvn install -DskipTests=true -Denv=travis-ci -B -V
2019-01-06 03:17:00 +08:00
2019-01-26 16:05:45 +08:00
services:
- mysql
before_install:
# - mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
- mysql -e "CREATE DATABASE `rebuild10` DEFAULT CHARSET utf8 COLLATE utf8_general_ci; CREATE USER 'rebuild'@'127.0.0.1' IDENTIFIED BY 'rebuild'; GRANT ALL PRIVILEGES ON `rebuild10`.* TO 'rebuild'@'127.0.0.1';"
2019-01-06 03:17:00 +08:00
#script: "mvn cobertura:cobertura"
#after_success:
# - bash <(curl -s https://codecov.io/bash)
2019-01-05 13:56:10 +08:00
# IN RESEARCH ...