You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
390 B
YAML
21 lines
390 B
YAML
# test compilation and then run tests with dummy mode turned on
|
|
language: ruby
|
|
before_install:
|
|
- sudo apt-get install -y libsystemd-dev
|
|
install: "bundle install"
|
|
rvm:
|
|
- 1.9.3
|
|
- 2.0.0
|
|
- 2.1.0
|
|
- 2.2.0
|
|
- 2.3.0
|
|
- 2.4.0
|
|
- 2.5.1
|
|
- 2.6.3
|
|
- 2.7.1
|
|
script:
|
|
- bundle exec rake compile
|
|
- bundle exec rake clean
|
|
- bundle exec rake compile -- --with-dummy
|
|
- bundle exec rspec
|