From f532ecc170b34d50fceb4c7c82c0dc678342849b Mon Sep 17 00:00:00 2001 From: Nikolay Shirokovskiy Date: Mon, 17 Jun 2024 18:03:52 +0300 Subject: [PATCH] test fixes --- .github/workflows/tree.yml | 8 ++++++-- tools/check-downgrade-versions.sh | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tree.yml b/.github/workflows/tree.yml index 0d841a63562c0..601ef5d59d4a0 100644 --- a/.github/workflows/tree.yml +++ b/.github/workflows/tree.yml @@ -5,6 +5,7 @@ on: branches: - 'master' - 'release/**' + - 'test-branch' tags: - '**' @@ -29,9 +30,9 @@ concurrency: jobs: entrypoint-tag: - if: github.repository == 'tarantool/tarantool' + if: github.repository == 'nshy/tarantool' - runs-on: ubuntu-20.04-self-hosted + runs-on: ubuntu-20.04 container: image: docker.io/tarantool/testing:ubuntu-jammy @@ -51,6 +52,9 @@ jobs: # checkout by sha in this case. ref: ${{ github.reftype == 'tag' && github.sha || github.ref }} + - name: Fix "dubious ownership" issue + run: git config --global --add safe.directory /__w/tarantool/tarantool + - name: Check entrypoint tag run: ./tools/check-entrypoint-tag.sh diff --git a/tools/check-downgrade-versions.sh b/tools/check-downgrade-versions.sh index d1c3eecc367d6..56fb9ff1409e4 100755 --- a/tools/check-downgrade-versions.sh +++ b/tools/check-downgrade-versions.sh @@ -14,7 +14,7 @@ # The check is only done for the commit tagged as release version # (annotated tag with name like 2.11.4). -set -eo pipefail +set -xeo pipefail error() { echo "$@" 1>&2