Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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