Skip to content

Commit 489c7d8

Browse files
authoredMar 4, 2019
Merge pull request #307 from ruby/azure-pipelines
Set up CI with Azure Pipelines
2 parents 91e4b80 + 77eb6d8 commit 489c7d8

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
 

‎azure-pipelines.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
jobs:
2+
- job: macOS
3+
pool:
4+
vmImage: 'macos-10.13'
5+
steps:
6+
- script: |
7+
gem install bundler
8+
bundle install --retry=3 --jobs=4
9+
displayName: 'bundle install'
10+
- script: ruby -Ilib exe/rake
11+
displayName: 'ruby -Ilib exe/rake'

‎test/helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class TaskManager
2828
include Rake::TaskManager
2929
end
3030

31-
RUBY = ENV["BUNDLE_RUBY"] || Gem.ruby
31+
RUBY = File.realpath(ENV["BUNDLE_RUBY"] || Gem.ruby)
3232

3333
def setup
3434
ARGV.clear

0 commit comments

Comments
 (0)
Please sign in to comment.