Skip to content

Commit

Permalink
Merge pull request #59 from tarantool/0x501D/ci-use-tt
Browse files Browse the repository at this point in the history
  • Loading branch information
filonenko-mikhail authored Jan 19, 2024
2 parents e91ba0f + 781259d commit 430f983
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/reusable_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
# dependencies when migrating to other OS version.
run: sudo dpkg -i tarantool*.deb

- name: Setup tt
run: |
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
sudo apt install -y tt
tt version
- run: make lint

- run: make test
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
with:
tarantool-version: ${{ matrix.tarantool }}

- name: Setup tt
run: |
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
sudo apt install -y tt
tt version
- name: Run static analysis
run: make lint

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TTCTL := tt
ifeq (,$(shell which tt 2>/dev/null))
TTCTL := tarantoolctl
$(error tt is not found)
endif

.PHONY: all
Expand Down

0 comments on commit 430f983

Please sign in to comment.