forked from RepentantGopher/tnt-kafka
-
Notifications
You must be signed in to change notification settings - Fork 15
63 lines (51 loc) · 1.44 KB
/
fast_testing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: fast_testing
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
linux:
strategy:
fail-fast: false
matrix:
tarantool:
- '2.11'
runs-on: ubuntu-latest
steps:
- name: Install tarantool ${{ matrix.tarantool }}
uses: tarantool/setup-tarantool@v1
with:
tarantool-version: ${{ matrix.tarantool }}
- name: Clone the module
uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'tests/requirements.txt'
- name: Start Kafka
uses: ybyzek/[email protected]
with:
type: cp-all-in-one-community
- name: Install Python dependencies
run: pip install -r tests/requirements.txt
- name: Build module
run: |
export MAKEFLAGS=-j8
tarantoolctl rocks STATIC_BUILD=ON make
- name: Run tarantool application
run: TT_LOG=tarantool.log tarantool tests/app.lua > output.log 2>&1 &
- name: Run test
run: KAFKA_HOST=localhost:9092 pytest tests
- name: Print Tarantool logs
if: always()
run: |
cat tarantool.log
cat output.log