Skip to content

Commit ee432f9

Browse files
committed
packages: install Tarantool repo in prebuild.sh
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
1 parent e13b51d commit ee432f9

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

debian/prebuild.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
set -e -o pipefail
4+
5+
curl -LsSf https://www.tarantool.io/release/1.10/installer.sh | sudo bash

rpm/prebuild.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
set -exu # Strict shell (w/o -o pipefail)
4+
5+
curl -LsSf https://www.tarantool.io/release/1.10/installer.sh | sudo bash

0 commit comments

Comments
 (0)