From ff5da771bbdecf6626541d88d20d70843539e9a7 Mon Sep 17 00:00:00 2001 From: Alexander Turenko Date: Fri, 24 Jun 2022 23:20:13 +0300 Subject: [PATCH] ci: use setup-tarantool for 2.10 Now the workaround for [1] is not needed, because tarantool-2.10+ releases are supported since setup-tarantool v1.3.0. The action uses the GitHub's caching infrastructure to speed up tarantool installation. [1]: https://github.com/tarantool/setup-tarantool/issues/19 --- .github/workflows/fast_testing.yaml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/fast_testing.yaml b/.github/workflows/fast_testing.yaml index b8216f7..46025ad 100644 --- a/.github/workflows/fast_testing.yaml +++ b/.github/workflows/fast_testing.yaml @@ -38,20 +38,11 @@ jobs: runs-on: ubuntu-latest steps: - - name: Install tarantool ${{ matrix.tarantool }} (< 2.10) - if: matrix.tarantool != '2.10' + - name: Install tarantool ${{ matrix.tarantool }} uses: tarantool/setup-tarantool@v1 with: tarantool-version: ${{ matrix.tarantool }} - # It's a temporary hack. May be removed after the fix: - # https://github.com/tarantool/setup-tarantool/issues/19 - - name: Install tarantool ${{ matrix.tarantool }} (2.10) - if: matrix.tarantool == '2.10' - run: | - curl -L https://tarantool.io/tWsLBdI/release/2/installer.sh | bash - sudo apt install -y tarantool tarantool-dev - - name: Clone the module uses: actions/checkout@v2