mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
14 lines
292 B
Bash
Executable file
14 lines
292 B
Bash
Executable file
#!/bin/bash
|
|
set -xeuo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
cd /tmp
|
|
wget http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.2.tar.gz
|
|
tar -xvzf ruby-2.2.2.tar.gz
|
|
|
|
cd ruby-2.2.2
|
|
./configure --enable-shared --disable-install-doc --disable-install-rdoc --disable-install-capi
|
|
make install -j 3
|
|
|
|
cd /
|
|
rm -rf /tmp/*
|