You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by xi...@apache.org on 2020/06/07 05:54:00 UTC

[incubator-pinot] branch adding_github_actions updated (f1b389b -> bed7980)

This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a change to branch adding_github_actions
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard f1b389b  Adding github actions for pinot tests
     new bed7980  Adding github actions for pinot tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f1b389b)
            \
             N -- N -- N   refs/heads/adding_github_actions (bed7980)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/scripts/.pinot_test.sh | 3 +++
 1 file changed, 3 insertions(+)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[incubator-pinot] 01/01: Adding github actions for pinot tests

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch adding_github_actions
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit bed798093f0e7e99415f81e68f3810507e52fe1d
Author: Xiang Fu <fx...@gmail.com>
AuthorDate: Sat Jun 6 17:37:14 2020 -0700

    Adding github actions for pinot tests
---
 .github/workflows/pinot_tests.yml        |  53 ++++++++++++++
 .github/workflows/scripts/.pinot_test.sh | 116 +++++++++++++++++++++++++++++++
 2 files changed, 169 insertions(+)

diff --git a/.github/workflows/pinot_tests.yml b/.github/workflows/pinot_tests.yml
new file mode 100644
index 0000000..e56c4e4
--- /dev/null
+++ b/.github/workflows/pinot_tests.yml
@@ -0,0 +1,53 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+name: Pinot Tests
+
+on:
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+jobs:
+  unit-test:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up JDK 1.8
+      uses: actions/setup-java@v1
+      with:
+        java-version: 1.8
+    - name: Unit Test
+      env:
+        RUN_INTEGRATION_TESTS: false
+      run: .github/workflows/scripts/.pinot_test.sh
+
+  integration-test:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up JDK 1.8
+      uses: actions/setup-java@v1
+      with:
+        java-version: 1.8
+    - name: Integration Test
+      env:
+        RUN_INTEGRATION_TESTS: true
+      run: .github/workflows/scripts/.pinot_test.sh
diff --git a/.github/workflows/scripts/.pinot_test.sh b/.github/workflows/scripts/.pinot_test.sh
new file mode 100755
index 0000000..1222c35
--- /dev/null
+++ b/.github/workflows/scripts/.pinot_test.sh
@@ -0,0 +1,116 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+
+jdk_version() {
+  local result
+  local java_cmd='java'
+  local IFS=$'\n'
+  # remove \r for Cygwin
+  local lines=$("$java_cmd" -Xms32M -Xmx32M -version 2>&1 | tr '\r' '\n')
+  if [[ -z $java_cmd ]]
+  then
+    result=no_java
+  else
+    for line in $lines; do
+      if [[ (-z $result) && ($line = *"version \""*) ]]
+      then
+        local ver=$(echo $line | sed -e 's/.*version "\(.*\)"\(.*\)/\1/; 1q')
+        # on macOS, sed doesn't support '?'
+        if [[ $ver = "1."* ]]
+        then
+          result=$(echo $ver | sed -e 's/1\.\([0-9]*\)\(.*\)/\1/; 1q')
+        else
+          result=$(echo $ver | sed -e 's/\([0-9]*\)\(.*\)/\1/; 1q')
+        fi
+      fi
+    done
+  fi
+  echo "$result"
+}
+
+pwd
+git log -5
+git fetch
+git log -5
+# ThirdEye related changes
+JAVA_VER="$(jdk_version)"
+echo "${JAVA_VER}"
+printenv
+cat "${GITHUB_EVENT_PATH}"
+COMMIT_BEFORE=$(jq -r ".pull_request.base.sha" "${GITHUB_EVENT_PATH}")
+COMMIT_AFTER=$(jq -r ".pull_request.head.sha" "${GITHUB_EVENT_PATH}")
+echo "${COMMIT_BEFORE}"
+echo "${COMMIT_AFTER}"
+git log "${COMMIT_BEFORE}"
+git log "${COMMIT_AFTER}"
+git diff --name-only "${COMMIT_BEFORE}...${COMMIT_AFTER}"
+git diff --name-only "${COMMIT_BEFORE}...${COMMIT_AFTER}" | egrep '^(thirdeye)'
+if [ $? -eq 0 ]; then
+  echo 'ThirdEye changes.'
+
+  if [ "JAVA_VER" != '8' ]; then
+    echo 'Skip ThirdEye tests for version other than jdk8.'
+    exit 0
+  fi
+
+  if [ "${RUN_INTEGRATION_TESTS}" == 'false' ]; then
+    echo 'Skip ThirdEye tests when integration tests off'
+    exit 0
+  fi
+
+  cd thirdeye
+  mvn test
+  failed=$?
+  if [ $failed -eq 0 ]; then
+    exit 0
+  else
+    exit 1
+  fi
+fi
+
+# Only run tests for JDK 8
+if [ "$TRAVIS_JDK_VERSION" != 'oraclejdk8' ]; then
+  echo 'Skip tests for version other than oracle jdk8.'
+  exit 0
+fi
+
+passed=0
+
+# Only run integration tests if needed
+if [ "$RUN_INTEGRATION_TESTS" != 'false' ]; then
+  mvn test -B -P travis,travis-integration-tests-only
+  if [ $? -eq 0 ]; then
+    passed=1
+  fi
+else
+  mvn test -B -P travis,travis-no-integration-tests
+  if [ $? -eq 0 ]; then
+    passed=1
+  fi
+fi
+
+if [ $passed -eq 1 ]; then
+  # Only send code coverage data if passed
+  bash <(cat .codecov_bash)
+  exit 0
+else
+  exit 1
+fi


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org