diff --git a/.github/workflows/check_on_push.yaml b/.github/workflows/check_on_push.yaml index 242d5007..b4dc696f 100644 --- a/.github/workflows/check_on_push.yaml +++ b/.github/workflows/check_on_push.yaml @@ -16,7 +16,7 @@ jobs: - name: Setup Tarantool CE uses: tarantool/setup-tarantool@v2 with: - tarantool-version: '2.6' + tarantool-version: '2.10' - name: Setup luacheck run: tarantoolctl rocks install luacheck 0.25.0 diff --git a/.github/workflows/test_on_push.yaml b/.github/workflows/test_on_push.yaml index c969a261..d912f629 100644 --- a/.github/workflows/test_on_push.yaml +++ b/.github/workflows/test_on_push.yaml @@ -25,7 +25,7 @@ jobs: metrics-version: "0.1.8" - tarantool-version: "2.8" metrics-version: "0.10.0" - - tarantool-version: "2.8" + - tarantool-version: "2.10" coveralls: true metrics-version: "0.12.0" fail-fast: false @@ -79,7 +79,7 @@ jobs: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository strategy: matrix: - tarantool-version: ["1.10", "2.8"] + tarantool-version: ["1.10", "2.10"] metrics-version: ["0.12.0"] fail-fast: false runs-on: ubuntu-20.04 @@ -112,7 +112,11 @@ jobs: if: github.event_name == 'push' strategy: matrix: - bundle_version: [ "1.10.11-0-gf0b0e7ecf-r422", "2.7.3-0-gdddf926c3-r422" ] + tarantool-version: + - folder: "1.10" + bundle: "tarantool-enterprise-sdk-1.10.13-48-r523" + - folder: "2.10" + bundle: "tarantool-enterprise-sdk-nogc64-2.10.4-0-r523.linux.x86_64" metrics-version: ["", "0.12.0"] fail-fast: false runs-on: ubuntu-20.04 @@ -121,9 +125,9 @@ jobs: - name: Install requirements for enterprise run: | - curl -O -L https://tarantool:${{ secrets.DOWNLOAD_TOKEN }}@download.tarantool.io/enterprise/tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz - tar -xzf tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz - rm -f tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz + curl -O -L https://tarantool:${{ secrets.DOWNLOAD_TOKEN }}@download.tarantool.io/enterprise/release/linux/x86_64/${{ matrix.tarantool-version.folder }}/${{ matrix.tarantool-version.bundle }}.tar.gz + tar -xzf ${{ matrix.tarantool-version.bundle }}.tar.gz + rm -f ${{ matrix.tarantool-version.bundle }}.tar.gz sudo cp tarantool-enterprise/tarantool /usr/bin/tarantool source tarantool-enterprise/env.sh tarantool --version