Skip to content

Commit 971e4ec

Browse files
committed
ci: rename 2.x-latest to master
The `master` branch on Tarantool is about 3.x now.
1 parent ce8e039 commit 971e4ec

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/testing.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434
- '1.10'
3535
- '2.8'
3636
- '2.10'
37-
- '2.x-latest'
37+
- 'master'
3838
coveralls: [false]
3939
fuzzing: [false]
4040
include:
41-
- tarantool: '2.x-latest'
41+
- tarantool: 'master'
4242
coveralls: true
4343
golang: 1.13
44-
- tarantool: '2.x-latest'
44+
- tarantool: 'master'
4545
fuzzing: true
4646
golang: 1.18
4747
coveralls: false
@@ -56,34 +56,34 @@ jobs:
5656
sudo apt install -y tt
5757
5858
- name: Setup Tarantool ${{ matrix.tarantool }}
59-
if: matrix.tarantool != '2.x-latest'
59+
if: matrix.tarantool != 'master'
6060
uses: tarantool/setup-tarantool@v2
6161
with:
6262
tarantool-version: ${{ matrix.tarantool }}
6363

64-
- name: Get Tarantool 2.x latest commit
65-
if: matrix.tarantool == '2.x-latest'
64+
- name: Get Tarantool master commit
65+
if: matrix.tarantool == 'master'
6666
run: |
6767
commit_hash=$(git ls-remote https://github.com/tarantool/tarantool.git --branch master | head -c 8)
6868
echo "LATEST_COMMIT=${commit_hash}" >> $GITHUB_ENV
6969
shell: bash
7070

71-
- name: Cache Tarantool 2.x latest
72-
if: matrix.tarantool == '2.x-latest'
71+
- name: Cache Tarantool master
72+
if: matrix.tarantool == 'master'
7373
id: cache-latest
7474
uses: actions/cache@v3
7575
with:
7676
path: "${GITHUB_WORKSPACE}/bin"
7777
key: cache-latest-${{ env.LATEST_COMMIT }}
7878

79-
- name: Setup Tarantool 2.x latest
80-
if: matrix.tarantool == '2.x-latest' && steps.cache-latest.outputs.cache-hit != 'true'
79+
- name: Setup Tarantool master
80+
if: matrix.tarantool == 'master' && steps.cache-latest.outputs.cache-hit != 'true'
8181
run: |
8282
tt init
8383
sudo tt install tarantool master
8484
85-
- name: Add Tarantool 2.x latest to PATH
86-
if: matrix.tarantool == '2.x-latest'
85+
- name: Add Tarantool master to PATH
86+
if: matrix.tarantool == 'master'
8787
run: echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH
8888

8989
- name: Setup golang for the connector and tests

0 commit comments

Comments
 (0)