Skip to content

Commit a17be27

Browse files
authored
install ffi in Azure env (#206)
* Use Ruby 2.4.3 * ffi 1.10.0 * remove bundle exec
1 parent 2ef736a commit a17be27

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

azure-pipelines.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ variables:
1111
steps:
1212
- task: UseRubyVersion@0
1313
inputs:
14-
versionSpec: '>= 2.5'
14+
versionSpec: '2.4.3'
1515

16-
- script: gem install bundler
17-
displayName: 'Install bundler'
16+
- script: gem install bundler ffi:1.10.0
17+
displayName: 'Gem install bundler and ffi for Windows environment'
1818

1919
- script: bundle install --retry=3 --jobs=4
2020
displayName: 'Call bundle install'
2121

2222
- script: gem uninstall --force eventmachine && gem install eventmachine --platform ruby
2323
displayName: 'bundle re-install eventmachine for Windows because of Windows environment issue'
2424

25-
- script: bundle exec parallel_test test/unit/ -n 4
26-
displayName: 'bundle exec parallel_test test/unit/ -n 4'
25+
- script: parallel_test test/unit/ -n 4
26+
displayName: 'Run parallel_test test/unit/ -n 4'

0 commit comments

Comments
 (0)