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:16:05 UTC

[calcite-avatica] branch master updated (475ad34 -> 975f605)

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 475ad34  Add GitHub Actions macOS
     new 975f605  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   (475ad34)
            \
             N -- N -- N   refs/heads/master (975f605)

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/main.yml | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)


[calcite-avatica] 01/01: 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 975f6051083c0ae285a034fd9b49872a94b6b0fd
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