mirror of https://github.com/apache/iotdb
23 lines
341 B
Bash
23 lines
341 B
Bash
#!/bin/bash
|
|
|
|
#get tsfile
|
|
rm -rf tsfile
|
|
git clone https://github.com/thulab/tsfile.git
|
|
cd tsfile
|
|
mvn install -DskipTests=true
|
|
|
|
#get jdbc
|
|
cd ..
|
|
rm -rf iotdb-jdbc
|
|
git clone https://github.com/thulab/iotdb-jdbc.git
|
|
cd iotdb-jdbc
|
|
mvn install -DskipTests=true
|
|
cd ..
|
|
|
|
#begin ...
|
|
rm -rf data
|
|
rm -rf derby*
|
|
mvn clean test
|
|
rm -rf data
|
|
rm -rf derby*
|