Skip to content

Commit

Permalink
[DO NOT MERGE] ci: test on Tarantool pr/8630
Browse files Browse the repository at this point in the history
  • Loading branch information
DifferentialOrange authored and CuriousGeorgiy committed Oct 21, 2023
1 parent f2e15f4 commit e6f24f2
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/test_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
- tarantool-version: "master"
metrics-version: "1.0.0"
vshard-version: "0.1.24"
- tarantool-version: "pr/8630"
metrics-version: "1.0.0"
vshard-version: "0.1.24"
remove-merger: true
fail-fast: false
# Can't install older versions on 22.04,
# see https://github.com/tarantool/setup-tarantool/issues/36
Expand All @@ -47,7 +51,7 @@ jobs:
- uses: actions/checkout@master

- name: Setup Tarantool CE
if: matrix.tarantool-version != 'master'
if: matrix.tarantool-version != 'master' && matrix.tarantool-version != 'pr/8630'
uses: tarantool/setup-tarantool@v2
with:
tarantool-version: ${{ matrix.tarantool-version }}
Expand Down Expand Up @@ -79,8 +83,14 @@ jobs:
tt init
tt install tarantool master
- name: Setup Tarantool from PR
if: matrix.tarantool-version == 'pr/8630'
run: |
tt init
tt install tarantool pr/8630
- name: Add Tarantool master to PATH
if: matrix.tarantool-version == 'master'
if: matrix.tarantool-version == 'master' || matrix.tarantool-version == 'pr/8630'
run: echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH

- name: Fix luarocks in Tarantool CE 1.10.6
Expand Down

0 comments on commit e6f24f2

Please sign in to comment.