File tree 3 files changed +43
-1
lines changed
3 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : " ubuntu1604"
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ LitmusAcceptance :
7
+ runs-on : ubuntu-16.04
8
+ steps :
9
+ - uses : actions/checkout@v1
10
+ - name : Set up Ruby 2.6
11
+ uses : actions/setup-ruby@v1
12
+ with :
13
+ ruby-version : 2.6
14
+ - name : Install gems and puppet agent
15
+ run : |
16
+ bundle install
17
+ sudo -u root env "PATH=$PATH" bundle exec rake 'litmus:install_agent'
18
+ - name : Install module
19
+ run : bundle exec rake 'litmus:install_module'
20
+ - name : Run acceptance tests
21
+ run : sudo -u root env "PATH=$PATH" bundle exec rake 'litmus:acceptance:localhost'
Original file line number Diff line number Diff line change
1
+ name : " ubuntu1804"
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ LitmusAcceptance :
7
+ runs-on : ubuntu-18.04
8
+ steps :
9
+ - uses : actions/checkout@v1
10
+ - name : Set up Ruby 2.6
11
+ uses : actions/setup-ruby@v1
12
+ with :
13
+ ruby-version : 2.6
14
+ - name : Install gems and puppet agent
15
+ run : |
16
+ bundle install
17
+ sudo -u root env "PATH=$PATH" bundle exec rake 'litmus:install_agent'
18
+ - name : Install module
19
+ run : bundle exec rake 'litmus:install_module'
20
+ - name : Run acceptance tests
21
+ run : sudo -u root env "PATH=$PATH" bundle exec rake 'litmus:acceptance:localhost'
Original file line number Diff line number Diff line change 24
24
.DS_Store
25
25
.project
26
26
.envrc
27
- / inventory.yaml
27
+ inventory.yaml
You can’t perform that action at this time.
0 commit comments