From b7cb2d46b7fe4e326499b866b7174b645c1102a3 Mon Sep 17 00:00:00 2001 From: Georgiy Lebedev Date: Thu, 16 May 2024 20:24:24 +0300 Subject: [PATCH] WIP --- .github/workflows/fast_testing.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/fast_testing.yml b/.github/workflows/fast_testing.yml index 8f38b13..45e0a70 100644 --- a/.github/workflows/fast_testing.yml +++ b/.github/workflows/fast_testing.yml @@ -21,10 +21,16 @@ jobs: runs-on: ubuntu-latest steps: - - name: Install tarantool ${{ matrix.tarantool }} - uses: tarantool/setup-tarantool@v1 - with: - tarantool-version: ${{ matrix.tarantool }} + - name: Setup tt + run: | + curl -L https://tarantool.io/release/3/installer.sh | sudo bash + sudo apt update + sudo apt install -y tt + + - name: Setup Tarantool master + run: | + tt --system --verbose init + tt --system --verbose install tarantool pr/10020 - name: Clone the module uses: actions/checkout@v4 @@ -48,10 +54,10 @@ jobs: - name: Build module run: | export MAKEFLAGS=-j8 - tarantoolctl rocks STATIC_BUILD=ON make + tt --system --verbose rocks STATIC_BUILD=ON make - name: Run tarantool application - run: TT_LOG=tarantool.log tarantool tests/app.lua > output.log 2>&1 & + run: TT_LOG=tarantool.log /opt/tarantool/bin/tarantool tests/app.lua > output.log 2>&1 & - name: Run test run: KAFKA_HOST=localhost:9092 pytest tests