Skip to content

Commit

Permalink
Fix issue with module build
Browse files Browse the repository at this point in the history
  • Loading branch information
jskarpe committed Jan 26, 2017
1 parent 0d9266d commit 7746d38
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 20 deletions.
34 changes: 17 additions & 17 deletions .gitignore
@@ -1,18 +1,18 @@
pkg/
Gemfile.lock
Gemfile.local
vendor/
.vendor/
spec/fixtures/manifests/
spec/fixtures/modules/
.vagrant/
.bundle/
coverage/
log/
.idea/
.dependencies/
.librarian/
Puppetfile.lock
*.iml
.*.sw?
.bundle
.metadata
.project
.rspec_system
.tmp
.yardoc
/.bundle
/.rspec_system
/.vagrant
/junit
/log
/pkg
/results
/spec/fixtures
/spec/reports
/vendor
coverage
.yardoc/
13 changes: 10 additions & 3 deletions .travis.yml
@@ -1,8 +1,15 @@
sudo: false
dist: trusty
language: ruby
sudo: true
cache: bundler
bundler_args: "--without development system_tests"
before_install: rm Gemfile.lock || true
bundler_args: --without system_tests development
before_install:
- bundle -v
- rm Gemfile.lock || true
- gem update --system
- gem update bundler
- gem --version
- bundle -v
script:
- bundle exec rake $CHECK
matrix:
Expand Down

0 comments on commit 7746d38

Please sign in to comment.