Skip to content

Commit

Permalink
Merge pull request #307 from ruby/azure-pipelines
Browse files Browse the repository at this point in the history
Set up CI with Azure Pipelines
  • Loading branch information
hsbt committed Mar 4, 2019
2 parents 91e4b80 + 77eb6d8 commit 489c7d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,11 @@
jobs:
- job: macOS
pool:
vmImage: 'macos-10.13'
steps:
- script: |
gem install bundler
bundle install --retry=3 --jobs=4
displayName: 'bundle install'
- script: ruby -Ilib exe/rake
displayName: 'ruby -Ilib exe/rake'
2 changes: 1 addition & 1 deletion test/helper.rb
Expand Up @@ -28,7 +28,7 @@ class TaskManager
include Rake::TaskManager
end

RUBY = ENV["BUNDLE_RUBY"] || Gem.ruby
RUBY = File.realpath(ENV["BUNDLE_RUBY"] || Gem.ruby)

def setup
ARGV.clear
Expand Down

0 comments on commit 489c7d8

Please sign in to comment.