You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by vl...@apache.org on 2019/11/10 22:34:29 UTC

[calcite-avatica] branch master updated (975f605 -> 875b925)

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

vladimirsitnikov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-avatica.git.


 discard 975f605  Add GitHub Actions macOS
 discard a68d297  Skip slow Calcite tests
     new 885c367  Skip slow Calcite tests
     new 875b925  Add GitHub Actions macOS

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   (975f605)
            \
             N -- N -- N   refs/heads/master (875b925)

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 2 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:
 .travis.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)


[calcite-avatica] 01/02: Skip slow Calcite tests

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

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-avatica.git

commit 885c367144486781123287f90595c682acf77144
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Mon Nov 11 00:24:30 2019 +0300

    Skip slow Calcite tests
---
 .travis.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 4739c97..7709e79 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,11 +26,12 @@ matrix:
     - name: Calcite/master
       install:
         - ./gradlew publishToMavenLocal -PskipJavadoc -Pcalcite.avatica.version=42.0
-      script:
         - cd ..
         - git clone --depth 10000 https://github.com/apache/calcite.git
         - cd calcite
-        - mvn install -Davatica.version=42.0-SNAPSHOT
+        - ./mvnw install -Davatica.version=42.0-SNAPSHOT -Dcheckstyle.skip -DskipTests=true -Dmaven.javadoc.skip=true -Djavax.net.ssl.trustStorePassword=changeit -B -V
+      script:
+        - ./mvnw test -Davatica.version=42.0-SNAPSHOT -DskipSlowTests -Dcheckstyle.skip -Dsurefire.useFile=false -Dsurefire.threadCount=1 -Dsurefire.perCoreThreadCount=false -Djavax.net.ssl.trustStorePassword=changeit -Dmaven.javadoc.skip=true
 
 branches:
   only:
@@ -45,6 +46,7 @@ git:
 before_cache:
   - rm -f  $HOME/.gradle/caches/modules-2/modules-2.lock
   - rm -fr $HOME/.gradle/caches/*/plugin-resolution/
+  - rm -fr $HOME/.m2/repository/org/apache/calcite
 cache:
   directories:
     - $HOME/.m2


[calcite-avatica] 02/02: Add GitHub Actions macOS

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

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-avatica.git

commit 875b92596f85720073aad113c4e1ffb8671ae52a
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Mon Nov 11 01:09:33 2019 +0300

    Add GitHub Actions macOS
---
 .github/workflows/main.yml | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 3abba03..fed0181 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -25,4 +25,19 @@ jobs:
     - name: 'Test'
       shell: bash
       run: |
-        ./gradlew --no-parallel build -x distTar
+        ./gradlew --no-parallel build
+
+  mac:
+    name: 'macOS (JDK 13)'
+    runs-on: macos-latest
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 50
+    - name: 'Set up JDK 13'
+      uses: actions/setup-java@v1
+      with:
+        java-version: 13
+    - name: 'Test'
+      run: |
+        ./gradlew --no-parallel build