You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ha...@apache.org on 2021/04/20 12:53:59 UTC

[skywalking-banyandb] branch main updated (d0fccdc -> 362e402)

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

hanahmily pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git.


 discard d0fccdc  Add CI workflow
     new 362e402  Add CI workflow

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   (d0fccdc)
            \
             N -- N -- N   refs/heads/main (362e402)

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/go.yml           | 2 --
 banyand/cmd/server/main.go         | 1 +
 banyand/executor/executor.go       | 1 +
 banyand/internal/cmd/root.go       | 1 +
 banyand/internal/cmd/standalone.go | 2 ++
 banyand/shard/shard.go             | 1 +
 banyand/storage/pipeline.go        | 1 +
 banyand/storage/query.go           | 1 +
 pkg/config/config.go               | 1 +
 pkg/logger/setting.go              | 1 +
 pkg/logger/setting_test.go         | 2 ++
 pkg/run/run.go                     | 2 ++
 pkg/signal/handler.go              | 1 +
 13 files changed, 15 insertions(+), 2 deletions(-)

[skywalking-banyandb] 01/01: Add CI workflow

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

hanahmily pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git

commit 362e402398a9bdb895b78136e6bb02d1770a27b5
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Tue Apr 20 20:26:58 2021 +0800

    Add CI workflow
    
    Signed-off-by: Gao Hongtao <ha...@gmail.com>
---
 .github/workflows/go.yml | 67 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)

diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
new file mode 100644
index 0000000..0ecc247
--- /dev/null
+++ b/.github/workflows/go.yml
@@ -0,0 +1,67 @@
+# 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: Continuous Integration
+
+on:
+  pull_request:
+  push:
+    branches:
+      - main
+
+jobs:
+  check:
+    name: Check
+    runs-on: ubuntu-20.04
+    steps:
+      - name: Install Go
+        uses: actions/setup-go@v2
+        with:
+          go-version: 1.16
+      - name: install goimports
+        run: GO111MODULE=off go get golang.org/x/tools/cmd/goimports
+      - name: Check out code into the Go module directory
+        uses: actions/checkout@v2
+      - name: Check License Header
+        uses: apache/skywalking-eyes@5c90c9698806040f50671a172a7cac17974ecebd
+      - name: Update dependencies
+        run: GOPROXY=https://proxy.golang.org go mod download
+      - name: Lint
+        run: make lint
+      - name: Check
+        run: make check
+  build:
+    name: Build
+    runs-on: ubuntu-20.04
+    steps:
+      - name: Install Go
+        uses: actions/setup-go@v2
+        with:
+          go-version: 1.16
+      - name: Check out code into the Go module directory
+        uses: actions/checkout@v2
+      - name: Update dependencies 
+        run: GOPROXY=https://proxy.golang.org go mod download
+      - name: Build
+        run: make build
+      - name: Build release
+        run: make release
+  checks:
+    name: build
+    runs-on: ubuntu-20.04
+    needs: [check, build]
+    steps:
+      - run: echo 'success'