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
CuriousGeorgiy committed Oct 27, 2023
1 parent f6bfca7 commit 2c1e317
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/fast_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ jobs:
- '2.8'
- '2.10'
- 'release-master'
- 'pr/8630'

env:
TNT_RELEASE_PATH: /home/runner/tnt-release

runs-on: ubuntu-20.04
steps:
- name: Install tarantool ${{ matrix.tarantool }}
if: startsWith(matrix.tarantool, 'release') != true
if: matrix.tarantool != 'release-master' && matrix.tarantool != 'pr/8630'
uses: tarantool/setup-tarantool@v2
with:
tarantool-version: ${{ matrix.tarantool }}
Expand Down Expand Up @@ -72,6 +73,16 @@ jobs:
fetch-depth: 0
submodules: true

- name: Clone tarantool fork with ${{ matrix.tarantool }}
if: matrix.tarantool == 'pr/8630'
uses: actions/checkout@v3
with:
repository: curiousgeorgiy/tarantool
ref: gh-8147-tuple-formats-in-iproto-responses
path: tarantool
fetch-depth: 0
submodules: true

- name: Build tarantool ${{ matrix.tarantool }}
if: startsWith(matrix.tarantool, 'release') && steps.cache-tnt-release.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit 2c1e317

Please sign in to comment.