Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set up CI with Azure Pipelines #307

Merged
merged 10 commits into from Mar 4, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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