Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump OSSL #110

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/fast_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ jobs:
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
with:
Expand All @@ -48,10 +59,10 @@ jobs:
- name: Build module
run: |
export MAKEFLAGS=-j8
tarantoolctl rocks STATIC_BUILD=ON make
tt --system --verbose rocks --global --verbose 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
Loading