JingsongLi commented on code in PR #184: URL: https://github.com/apache/flink-table-store/pull/184#discussion_r911999407
########## .github/workflows/build-flink-1.14.yml: ########## @@ -0,0 +1,18 @@ +name: Build Flink 1.14 + +on: [push, pull_request] + +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: | + mvn clean install -Dmaven.test.skip=true -Pflink-1.14 Review Comment: Make tests compiled with Flink 1.14 is very very hard... -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
