From 0a3ba560f8f190d02034aa6a462c2c154f51651f Mon Sep 17 00:00:00 2001 From: Evgeny Karpov Date: Thu, 24 Aug 2023 10:17:27 +0200 Subject: [PATCH] * disable general tracing and add a few debugging command --- .github/workflows/ci-arm64.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-arm64.yml b/.github/workflows/ci-arm64.yml index c96f75174ac5a..80e0f3b06e41d 100644 --- a/.github/workflows/ci-arm64.yml +++ b/.github/workflows/ci-arm64.yml @@ -158,7 +158,6 @@ jobs: - name: Create PR for a benchmark snapshot run: | - set -x git config --global user.name "$GITHUB_ACTOR" git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com" git fetch origin ${{ github.event.repository.default_branch }} @@ -167,9 +166,11 @@ jobs: benchmark_asset=$(date +".assets/benchmark_snapshot_%Y-%m-%d_%H_%M_%S.png") [ ! -d .assets ] && mkdir .assets mv benchmark_snapshot.png $benchmark_asset + git status git restore .github/workflows/scripts git checkout assets git add $benchmark_asset + git status git commit -am "* add a benchmark image" git push git checkout -b benchmark_snapshot