Skip to content

Commit 48ddef5

Browse files
Set up CI with Azure Pipelines
[skip ci]
1 parent 379b843 commit 48ddef5

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

azure-pipelines.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Ruby
2+
# Package your Ruby project.
3+
# Add steps that install rails, analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby
5+
6+
trigger:
7+
- main
8+
9+
pool:
10+
vmImage: 'ubuntu-latest'
11+
12+
steps:
13+
- task: UseRubyVersion@0
14+
inputs:
15+
versionSpec: '>= 2.5'
16+
17+
- script: |
18+
gem install bundler
19+
cd android/examples
20+
bundle install --retry=3 --jobs=4
21+
displayName: 'bundle install'
22+
23+
- script: bundle exec rake
24+
displayName: 'bundle exec rake first'

0 commit comments

Comments
 (0)