sijie commented on a change in pull request #5064: Add Github workflow for
gated checkin
URL: https://github.com/apache/pulsar/pull/5064#discussion_r318771445
##########
File path: .github/workflows/integration-ci.yaml
##########
@@ -0,0 +1,19 @@
+name: CI
+on: [pull_request]
+
+jobs:
+
+ build-integration:
+ name: Integration tests
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@master
+
+ - name: run integration tests
+ run: |
+ java -version
+ javac -version
+ mvn install -Pdocker -DskipTests
+ mvn -f tests/pom.xml test -DintegrationTests
Review comment:
```suggestion
mvn -f tests/pom.xml -DintegrationTests
-DredirectTestOutputToFile=false
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services