补充初始化脚本init.sql中缺失的数据语句 (#1172) #727
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 |