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 2019/11/11 16:28:36 UTC

[skywalking] branch minikube updated (8433d1a -> b2a199d)

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

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


 discard 8433d1a  upload logs
     new b2a199d  upload logs

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   (8433d1a)
            \
             N -- N -- N   refs/heads/minikube (b2a199d)

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/istio-mixer-ci.yaml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


[skywalking] 01/01: upload logs

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

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

commit b2a199decad80ba5488c2eb9403d9d5fdb3f4467
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Tue Nov 12 00:24:21 2019 +0800

    upload logs
---
 .github/workflows/istio-mixer-ci.yaml | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/istio-mixer-ci.yaml b/.github/workflows/istio-mixer-ci.yaml
index 03ca05f..b4ea050 100644
--- a/.github/workflows/istio-mixer-ci.yaml
+++ b/.github/workflows/istio-mixer-ci.yaml
@@ -3,16 +3,23 @@ name: istio-mixer-ci
 on: [push]
 env:
   SCRIPTS_DIR: ./test/scripts
+  LOG_DIR: /tmp/skywalking
 jobs:
   build:
     runs-on: ubuntu-16.04
     steps:
       - uses: actions/checkout@v1
       - name: Prepare enviroment
-        run: bash ./test/scripts/pre.sh
+        run: |
+          bash ./test/scripts/pre.sh
+          mkdir -p ${LOG_DIR}
       - name: Start minikube
-        run: bash ${SCRIPTS_DIR}/minikube.sh start &
+        run: bash ${SCRIPTS_DIR}/minikube.sh start > ${LOG_DIR}/minikube-start-log.txt 2>&1 &
       - name: Wating minikube ready
         run: bash ${SCRIPTS_DIR}/minikube.sh wait
       - name: Setup tunnel
-        run: minikube tunnel --log_dir=/tmp/skywalking &
+        run: minikube tunnel --log_dir=${LOG_DIR} &
+      - uses: actions/upload-artifact@v1.0.0
+        with:
+          name: logs
+          path: ${LOG_DIR}