From 4d91fd8ecd57556d1f76c887ef8e0e1d94a8da79 Mon Sep 17 00:00:00 2001 From: Sergey Bronnikov Date: Thu, 10 Feb 2022 18:26:48 +0300 Subject: [PATCH] github-ci: enable Tarantool 2.10 in integration testing Testing for Tarantool 2.10 has been disabled in commit "github-ci: skip running tests for tarantool 2.10" (763c73d63618ff22762de7f12d81b0229dd81b58) due to issue #96. This patch reverts these changes because #96 is fixed. Follows up #96 --- .github/workflows/reusable_testing.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/reusable_testing.yml b/.github/workflows/reusable_testing.yml index 55d63be..309bb64 100644 --- a/.github/workflows/reusable_testing.yml +++ b/.github/workflows/reusable_testing.yml @@ -31,13 +31,6 @@ 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 python3 for tests uses: actions/setup-python@v2 with: @@ -51,7 +44,3 @@ 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') }}