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

Merge branch 'add-ci-yml' into 'master'

Add .gitlab-ci.yml file



See merge request !3
parents d8121f71 72bced98
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
- gem install bundler --no-ri --no-rdoc
- bundle install
rspec:
script:
- bundle exec rake test
tags:
- ruby
\ No newline at end of file
#!/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