forked from biemond/biemond-orawls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·89 lines (55 loc) · 1.94 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/bash
source ~/.profile
source ~/.rvm/scripts/rvm
rvm --version
# rvm install ruby-1.8.7
# rvm use ruby-1.8.7
# rvm install ruby-1.9.3
# rvm use ruby-1.9.3
rvm install ruby-2.3.3
rvm use ruby-2.3.3
export PUPPET_VERSION=4.10.10
set -e
ruby -v
echo "gem version"
gem --version
gem install bundler --no-rdoc --no-ri
bundle install --without development
bundle --version
gem update --system 2.1.11
rake module:clean
bundle exec puppet strings generate ./\*\*/*.pp ./lib/puppet/functions/**/*.rb
bundle exec rake syntax
bundle exec rake lint
bundle exec rake spec
bundle exec rubocop
#bundle exec rake spec
#ruby syntax check
rubocop
# Release the Puppet module, doing a clean, build, tag, push, bump_commit
rake module:clean
rake build
rake module:push
rake module:tag
rake module:bump_commit # Bump version and git commit
# for windows
install ruby 1.9.3 for windows
install puppet 3.7.1 msi (https://downloads.puppetlabs.com/windows/)
gem install bundler --no-rdoc --no-ri
bundle install --without development
gem update --system 2.1.11
set PUPPET_VERSION=3.7.1
bundle update
SET PATH="C:\Program Files (x86)\Puppet Labs\Puppet\bin";"C:\Program Files (x86)\Puppet Labs\Puppet\facter\bin";"C:\Program Files (x86)\Puppet Labs\Puppet\hiera\bin";"C:\Program Files (x86)\Puppet Labs\Puppet\bin";"C:\Program Files (x86)\Puppet Labs\Puppet\sys\tools\bin";%PATH%
SET RUBYLIB="C:\Program Files (x86)\Puppet Labs\Puppet\lib";"C:\Program Files (x86)\Puppet Labs\Puppet\facter\lib";"C:\Program Files (x86)\Puppet Labs\Puppet\hiera\lib";%RUBYLIB%;
bundle exec rake syntax
bundle exec rake lint
bundle exec rake ci:setup:rspec spec
python
pylint utils.py.erb --max-args=8 --additional-builtins='cd','create','cmo','File' --disable=C0111
brew cask install puppetlabs/puppet/pdk
brew cask upgrade pdk
/opt/puppetlabs/pdk/bin/pdk convert
/opt/puppetlabs/pdk/bin/pdk validate metadata,puppet
/opt/puppetlabs/pdk/bin/pdk test unit
/opt/puppetlabs/pdk/bin/pdk build