blob: 06695ccd97ad845270597ac3b5f69c0b3d8eab15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
echo "--- system details"
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize
ruby -v
bundle --version
echo "--- bundle install"
bundle install --jobs=3 --retry=3 --without omnibus_package docgen chefstyle
echo "+++ bundle exec rake"
bundle exec rake spec:functional
exit $LASTEXITCODE
|