Skip to content

Commit

Permalink
github-ci: skip running tests for tarantool 2.10
Browse files Browse the repository at this point in the history
This patch skips tests run for tarantool 2.10 in reusable_testing.yml
workflow due to the bug [1]. After [1] is fixed, the skip condition
should be removed from the workflow.

[1] #96
  • Loading branch information
ylobankov committed Dec 27, 2021
1 parent f77b3fd commit 7998b4d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/reusable_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ jobs:
# dependencies when migrating to other OS version.
run: sudo dpkg -i tarantool_*.deb tarantool-common_*.deb tarantool-dev_*.deb

# TODO: Remove this when https://github.com/tarantool/memcached/issues/96
# is resolved.
- name: Get the tarantool version
run: |
TNT_VERSION=$(tarantool --version | grep -e '^Tarantool')
echo "TNT_VERSION=$TNT_VERSION" >> $GITHUB_ENV
- name: Setup python2 for tests
uses: actions/setup-python@v2
with:
Expand All @@ -44,3 +51,7 @@ jobs:

- run: cmake . && make
- run: make test-memcached
# TODO: Remove this when https://github.com/tarantool/memcached/issues/96
# is resolved.
if: ${{ startsWith(env.TNT_VERSION, 'Tarantool 1.10') ||
startsWith(env.TNT_VERSION, 'Tarantool 2.8') }}

0 comments on commit 7998b4d

Please sign in to comment.