Skip to content

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nshy committed Jun 17, 2024
1 parent 3ae67a6 commit f532ecc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- 'master'
- 'release/**'
- 'test-branch'
tags:
- '**'

Expand All @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tools/check-downgrade-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f532ecc

Please sign in to comment.