Skip to content

Commit c564e6d

Browse files
committed
ci: fix master build cache
Environment variables are not allowed[1] in the step context configuration. 1. https://github.com/orgs/community/discussions/35739
1 parent 971e4ec commit c564e6d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/testing.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ jobs:
5555
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
5656
sudo apt install -y tt
5757
58+
- name: Setup tt environment
59+
run: tt init
60+
5861
- name: Setup Tarantool ${{ matrix.tarantool }}
5962
if: matrix.tarantool != 'master'
6063
uses: tarantool/setup-tarantool@v2
@@ -73,13 +76,14 @@ jobs:
7376
id: cache-latest
7477
uses: actions/cache@v3
7578
with:
76-
path: "${GITHUB_WORKSPACE}/bin"
79+
path: |
80+
${{ github.workspace }}/bin
81+
${{ github.workspace }}/include
7782
key: cache-latest-${{ env.LATEST_COMMIT }}
7883

7984
- name: Setup Tarantool master
8085
if: matrix.tarantool == 'master' && steps.cache-latest.outputs.cache-hit != 'true'
8186
run: |
82-
tt init
8387
sudo tt install tarantool master
8488
8589
- name: Add Tarantool master to PATH

0 commit comments

Comments
 (0)