We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 971e4ec commit c564e6dCopy full SHA for c564e6d
.github/workflows/testing.yml
@@ -55,6 +55,9 @@ jobs:
55
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
56
sudo apt install -y tt
57
58
+ - name: Setup tt environment
59
+ run: tt init
60
+
61
- name: Setup Tarantool ${{ matrix.tarantool }}
62
if: matrix.tarantool != 'master'
63
uses: tarantool/setup-tarantool@v2
@@ -73,13 +76,14 @@ jobs:
73
76
id: cache-latest
74
77
uses: actions/cache@v3
75
78
with:
- path: "${GITHUB_WORKSPACE}/bin"
79
+ path: |
80
+ ${{ github.workspace }}/bin
81
+ ${{ github.workspace }}/include
82
key: cache-latest-${{ env.LATEST_COMMIT }}
83
84
- name: Setup Tarantool master
85
if: matrix.tarantool == 'master' && steps.cache-latest.outputs.cache-hit != 'true'
86
run: |
- tt init
87
sudo tt install tarantool master
88
89
- name: Add Tarantool master to PATH
0 commit comments