mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
initial commit
This commit is contained in:
commit
aefaed4d90
13 changed files with 120 additions and 0 deletions
14
scripts/install-ruby
Executable file
14
scripts/install-ruby
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -xeo pipefail
|
||||
|
||||
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/*
|
||||
Loading…
Add table
Add a link
Reference in a new issue