Skip to content

Commit

Permalink
packages: install Tarantool repo in prebuild.sh
Browse files Browse the repository at this point in the history
Build systems install build dependencies using a default distro repo.
It may an be outdated, broken or missed Tarantool package.

To provide the latest version of Tarantool 1.10 (the latest of the
lower supported version), `prebuild.sh` script wich installs Tarantool
repo was added to packages spec folders.

Part of #43
  • Loading branch information
oleg-jukovec committed Aug 1, 2022
1 parent 4797fdf commit 7f93f73
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions debian/prebuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

set -e -o pipefail

curl -LsSf https://www.tarantool.io/release/1.10/installer.sh | sudo bash
5 changes: 5 additions & 0 deletions rpm/prebuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

set -exu # Strict shell (w/o -o pipefail)

curl -LsSf https://www.tarantool.io/release/1.10/installer.sh | sudo bash

0 comments on commit 7f93f73

Please sign in to comment.