Skip to content
Snippets Groups Projects
Commit 4bb713b8 authored by Nicolas "Pixel" Noble's avatar Nicolas "Pixel" Noble
Browse files

Last changes to build_artifact_ruby.sh

parent 700cae3b
No related branches found
No related tags found
No related merge requests found
...@@ -28,12 +28,17 @@ ...@@ -28,12 +28,17 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
set -ex set -ex
SYSTEM=`uname | cut -f 1 -d_`
cd $(dirname $0)/../.. cd $(dirname $0)/../..
if [ "$SYSTEM" == "Darwin" ] ; then
./tools/distrib/build_ruby_environment_macos.sh
fi
set +ex set +ex
[[ -s /etc/profile.d/rvm.sh ]] && . /etc/profile.d/rvm.sh [[ -s /etc/profile.d/rvm.sh ]] && . /etc/profile.d/rvm.sh
set -ex set -ex
SYSTEM=`uname | cut -f 1 -d_`
if [ "$SYSTEM" == "MSYS" ] ; then if [ "$SYSTEM" == "MSYS" ] ; then
SYSTEM=MINGW32 SYSTEM=MINGW32
fi fi
...@@ -52,11 +57,9 @@ if [ "$SYSTEM" == "Darwin" ] ; then ...@@ -52,11 +57,9 @@ if [ "$SYSTEM" == "Darwin" ] ; then
set -ex set -ex
fi fi
if [ "$SYSTEM" == "Linux" ] ; then set +ex
set +ex ${SETARCH_CMD} bundle install
${SETARCH_CMD} bundle install set -ex
set -ex
fi
${SETARCH_CMD} rake gem:native ${SETARCH_CMD} rake gem:native
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment