init中的sql脚本中的错误漏改了,以及解决不能创建关系型数据库的任务的问题。 #705
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build With Mvnw | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'taier-ui/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'taier-ui/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build | |
run: | | |
./mvnw clean package -DskipTests -T 1C -pl \ | |
taier-data-develop,\ | |
taier-common,\ | |
taier-worker/taier-worker-plugin,\ | |
taier-datasource/taier-datasource-plugin \ | |
-am -amd |