Skip to content
Snippets Groups Projects
Commit 72bced98 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Add prepare_build.sh

parent 674e21c8
No related branches found
No related tags found
1 merge request!3Add .gitlab-ci.yml file
Pipeline #
before_script:
- ./scripts/prepare_build.sh
- ruby -v
- which ruby
- apt-get install libicu-dev -y
- gem install bundler --no-ri --no-rdoc
- bundle install
 
Loading
Loading
#!/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
\ No newline at end of file
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