You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/08/17 10:02:49 UTC

[skywalking-banyandb] branch test updated (536b629 -> cc2bcd6)

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

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


 discard 536b629  Test
     new cc2bcd6  Test

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   (536b629)
            \
             N -- N -- N   refs/heads/test (cc2bcd6)

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/publish-docker.yml | 1 +
 1 file changed, 1 insertion(+)

[skywalking-banyandb] 01/01: Test

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

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

commit cc2bcd68c1fb1aab32766ca135a422be354ee8a7
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Tue Aug 17 17:59:17 2021 +0800

    Test
---
 .github/workflows/publish-docker.yml | 9 ++++-----
 scripts/build/docker.mk              | 8 ++++----
 2 files changed, 8 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml
index fce0470..6104256 100644
--- a/.github/workflows/publish-docker.yml
+++ b/.github/workflows/publish-docker.yml
@@ -21,6 +21,7 @@ on:
   push:
     branches:
       - main
+      - test
 
 env:
   HUB: ghcr.io/apache/skywalking-banyandb
@@ -33,8 +34,6 @@ jobs:
       contents: read
       packages: write
     timeout-minutes: 90
-    strategy:
-      fail-fast: true
     env:
       TAG: ${{ github.sha }}
     steps:
@@ -55,14 +54,14 @@ jobs:
       - name: Build docker image
         run: |
           make docker || make docker
+          docker images
       - name: Log in to the Container registry
         uses: docker/login-action@v1.10.0
-        if: github.ref == 'refs/heads/main'
         with:
           registry: ${{ env.HUB }}
           username: ${{ github.actor }}
           password: ${{ secrets.GITHUB_TOKEN }}
       - name: Push docker image
-        if: github.ref == 'refs/heads/main'
         run: |
-          make docker.push || make docker.push
\ No newline at end of file
+          docker images
+          make docker.push || make docker.push
diff --git a/scripts/build/docker.mk b/scripts/build/docker.mk
index 6b728aa..941a889 100644
--- a/scripts/build/docker.mk
+++ b/scripts/build/docker.mk
@@ -16,7 +16,7 @@
 # under the License.
 #
 
-# The hub of the docker image. The default value is skywalking-banyandd.
+# The hub of the docker image. The default value is skywalking-banyandb.
 # For github registry, it would be ghcr.io/apache/skywalking-banyandb
 HUB ?= skywalking-banyandb
 
@@ -33,10 +33,10 @@ BUILD_ARGS := $(BUILD_ARGS) --build-arg CERT_IMAGE=alpine:edge --build-arg BASE_
 
 .PHONY: docker
 docker:
-	@echo "Build Skywalking/BanyanDB Docker Image"
+	@echo "Build SkyWalking/BanyanDB Docker Image"
 	@time docker buildx build $(BUILD_ARGS) -t $(HUB):$(TAG) -f Dockerfile ..
 
 .PHONY: docker.push
 docker.push:
-	@echo "Push Skywalking/BanyanDB Docker Image"
-	@time docker push $(HUB):$(TAG)
\ No newline at end of file
+	@echo "Push SkyWalking/BanyanDB Docker Image"
+	@time docker push $(HUB):$(TAG)