mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 19:58:03 +00:00
61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
---
|
|
version: 1.1.x.{build}
|
|
branches:
|
|
only:
|
|
- master
|
|
skip_commits:
|
|
message: /^\(?doc\)?.*/
|
|
clone_depth: 10
|
|
init:
|
|
- SET
|
|
- 'mkdir C:\ProgramData\PuppetLabs\code && exit 0'
|
|
- 'mkdir C:\ProgramData\PuppetLabs\facter && exit 0'
|
|
- 'mkdir C:\ProgramData\PuppetLabs\hiera && exit 0'
|
|
- 'mkdir C:\ProgramData\PuppetLabs\puppet\var && exit 0'
|
|
environment:
|
|
matrix:
|
|
-
|
|
RUBY_VERSION: 24-x64
|
|
CHECK: syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop
|
|
-
|
|
PUPPET_GEM_VERSION: ~> 5.0
|
|
RUBY_VERSION: 24
|
|
CHECK: parallel_spec
|
|
-
|
|
PUPPET_GEM_VERSION: ~> 5.0
|
|
RUBY_VERSION: 24-x64
|
|
CHECK: parallel_spec
|
|
-
|
|
PUPPET_GEM_VERSION: ~> 6.0
|
|
RUBY_VERSION: 25
|
|
CHECK: parallel_spec
|
|
-
|
|
PUPPET_GEM_VERSION: ~> 6.0
|
|
RUBY_VERSION: 25-x64
|
|
CHECK: parallel_spec
|
|
matrix:
|
|
fast_finish: true
|
|
install:
|
|
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
|
|
- bundle install --jobs 4 --retry 2 --without system_tests
|
|
- type Gemfile.lock
|
|
- ps: "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri https://github.com/PowerShell/PowerShell/raw/master/tools/install-powershell.ps1 -UseBasicParsing -OutFile install-pwsh.ps1"
|
|
- ps: "& ./install-pwsh.ps1"
|
|
- set PATH=%LOCALAPPDATA%\Microsoft\powershell;%PATH%
|
|
- pwsh -NoProfile -NoLogo -NonInteractive -Command $PSVersionTable
|
|
- powershell -NoProfile -NoLogo -NonInteractive -Command $PSVersionTable
|
|
build: off
|
|
test_script:
|
|
- bundle exec puppet -V
|
|
- ruby -v
|
|
- gem -v
|
|
- bundle -v
|
|
- bundle exec rake %CHECK%
|
|
notifications:
|
|
- provider: Email
|
|
to:
|
|
- nobody@nowhere.com
|
|
on_build_success: false
|
|
on_build_failure: false
|
|
on_build_status_changed: false
|