We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 674e21c commit 72bced9Copy full SHA for 72bced9
.gitlab-ci.yml
@@ -1,7 +1,7 @@
1
before_script:
2
+ - ./scripts/prepare_build.sh
3
- ruby -v
4
- which ruby
- - apt-get install libicu-dev -y
5
- gem install bundler --no-ri --no-rdoc
6
- bundle install
7
scripts/prepare_build.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+if [ -f /.dockerinit ]; then
+ apt-get update -qq
+ apt-get install -y -qq libicu-dev cmake
+else
+ export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
+fi
0 commit comments