Support localdate convert to date in datetype #377
Workflow file for this run
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: Follower Read test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
followerread-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
cache: maven | |
- name: deploy TiUP | |
run: curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh | |
- name: deploy TiDB | |
run: /home/runner/.tiup/bin/tiup playground --db.config config/followerread/tidb.toml --kv.config config/followerread/tikv.toml --pd.config config/followerread/pd.toml --kv 3 --without-monitor & | |
- name: copy properties | |
run: cp core/src/test/resources/tidb_config.properties.withoutdataload.template core/src/test/resources/tidb_config.properties | |
- name: build | |
run: mvn clean package -Dmaven.test.skip=true -B | |
- name: test follower read | |
run: mvn test -e -am -pl core -Dtest=moo -DwildcardSuites=org.apache.spark.sql.followerread.FollowerReadSuite -DfailIfNoTests=false |