mirror of
https://github.com/getrebuild/rebuild.git
synced 2024-11-10 08:55:31 +08:00
18 lines
No EOL
528 B
YAML
18 lines
No EOL
528 B
YAML
language: java
|
|
sudo: false
|
|
script: mvn clean install -DskipTests=false -B -V
|
|
|
|
services:
|
|
- mysql
|
|
- redis
|
|
|
|
before_install:
|
|
- mysql -e "CREATE DATABASE rebuild10 DEFAULT CHARSET utf8 COLLATE utf8_general_ci;"
|
|
- mysql -e "CREATE USER 'rebuild'@'127.0.0.1' IDENTIFIED BY 'rebuild'; GRANT ALL PRIVILEGES ON rebuild10.* TO 'rebuild'@'127.0.0.1'; FLUSH PRIVILEGES;"
|
|
- mysql -D rebuild10 < .setup/mysql-init.sql
|
|
|
|
#script: "mvn cobertura:cobertura"
|
|
#after_success:
|
|
# - bash <(curl -s https://codecov.io/bash)
|
|
|
|
# IN RESEARCH ... |