This is an automated email from the ASF dual-hosted git repository.
jave pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 1fe5b31 Fix checkoutv2 push trigger on dev (#2263)
1fe5b31 is described below
commit 1fe5b31468aa62f8477bc17044d7519403f8ee12
Author: khadgarmage <[email protected]>
AuthorDate: Sat Mar 21 23:34:36 2020 +0800
Fix checkoutv2 push trigger on dev (#2263)
* push trigger on dev
---
.github/workflows/ci_ut.yml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci_ut.yml b/.github/workflows/ci_ut.yml
index 95dfed8..8d75bae 100644
--- a/.github/workflows/ci_ut.yml
+++ b/.github/workflows/ci_ut.yml
@@ -15,7 +15,11 @@
# limitations under the License.
#
-on: ["pull_request", "push"]
+on:
+ pull_request:
+ push:
+ branches:
+ - dev
env:
DOCKER_DIR: ./docker
LOG_DIR: /tmp/dolphinscheduler
@@ -58,7 +62,6 @@ jobs:
export MAVEN_OPTS='-Dmaven.repo.local=.m2/repository
-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:+CMSClassUnloadingEnabled
-XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit -Xmx3g'
mvn test -B -Dmaven.test.skip=false
- name: Upload coverage report to codecov
- if: github.event_name == 'pull_request'
run: |
CODECOV_TOKEN="09c2663f-b091-4258-8a47-c981827eb29a" bash <(curl -s
https://codecov.io/bash)
- name: Run SonarCloud Analysis