diff --git a/.github/workflows/func-transform.yml b/.github/workflows/func-transform.yml index 69226fd8b..6a67cfa22 100644 --- a/.github/workflows/func-transform.yml +++ b/.github/workflows/func-transform.yml @@ -75,9 +75,11 @@ jobs: - name: Start IginX run: | chmod +x "${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/sbin/start_iginx.sh" - nohup "${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/sbin/start_iginx.sh" & + nohup "${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/sbin/start_iginx.sh" > iginx.log 2>&1 & - name: A Lame Integration Test with Maven for IoTDB - run: mvn test -q -Dtest=TransformIT -DfailIfNoTests=false + run: | + mvn test -q -Dtest=TransformIT -DfailIfNoTests=false + cat iginx.log - uses: codecov/codecov-action@v1 with: file: ./**/target/site/jacoco/jacoco.xml