Skip to content

Commit

Permalink
try to refactor tarantool installation
Browse files Browse the repository at this point in the history
  • Loading branch information
igorcoding committed May 5, 2024
1 parent ed65582 commit 9a15a55
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Tarantool ${{ matrix.tarantool }}

- name: Install Tarantool ${{ matrix.tarantool }} on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
curl -L https://tarantool.io/nTmSHOX/release/${{ matrix.tarantool }}/installer.sh | bash
sudo apt-get -y install tarantool
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install tarantool
else
echo "$RUNNER_OS not supported"
exit 1
fi
curl -L https://tarantool.io/nTmSHOX/release/${{ matrix.tarantool }}/installer.sh | bash
sudo apt-get -y install tarantool
- name: Install Tarantool ${{ matrix.tarantool }} on MacOS
if: matrix.os == 'macos-latest'
run: brew install tarantool

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel coveralls
Expand Down

0 comments on commit 9a15a55

Please sign in to comment.