Skip to content

Commit

Permalink
[DO NOT MERGE] ci: test on tarantool/tarantool#8630
Browse files Browse the repository at this point in the history
Temporarily add tarantool/tarantool#8630 to test matrix.

NO_CHANGELOG=<temporary commit>
NO_DOC=<temporary commit>
NO_TEST=<temporary commit>
  • Loading branch information
CuriousGeorgiy committed Oct 27, 2023
1 parent aff03d6 commit dadb0a6
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .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,8 +73,18 @@ 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'
if: (startsWith(matrix.tarantool, 'release') && steps.cache-tnt-release.outputs.cache-hit != 'true') || matrix.tarantool == 'pr/8630'
run: |
sudo apt-get -y install build-essential cmake make zlib1g-dev libreadline-dev libncurses5-dev \
libssl-dev libunwind-dev libicu-dev python3 python3-yaml python3-six python3-gevent
Expand All @@ -83,7 +94,7 @@ jobs:
make && make DESTDIR=${TNT_RELEASE_PATH} install
- name: Install tarantool ${{ matrix.tarantool }}
if: startsWith(matrix.tarantool, 'release')
if: startsWith(matrix.tarantool, 'release') || matrix.tarantool == 'pr/8630'
# Workaround as actions/cache cannot restore data to /usr/local
run: sudo cp -rvP ${TNT_RELEASE_PATH}/usr/local/* /usr/local/

Expand Down

0 comments on commit dadb0a6

Please sign in to comment.