Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousGeorgiy committed May 17, 2024
1 parent e029de2 commit b7cb2d4
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/fast_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b7cb2d4

Please sign in to comment.