Skip to content

Commit 8853748

Browse files
authored
Merge pull request puppetlabs#92 from puppetlabs/pdksync_pdksync_f778803
pdksync - (maint) Update pdk-template to f778803
2 parents ae4f0f2 + 00ac91c commit 8853748

8 files changed

+35
-16
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
/convert_report.txt
2323
/update_report.txt
2424
.DS_Store
25-
.vscode/
2625
.envrc
26+
/inventory.yaml

.pdkignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
/convert_report.txt
2323
/update_report.txt
2424
.DS_Store
25-
.vscode/
2625
.envrc
26+
/inventory.yaml
2727
/appveyor.yml
2828
/.fixtures.yml
2929
/Gemfile
@@ -32,8 +32,10 @@
3232
/.gitlab-ci.yml
3333
/.pdkignore
3434
/Rakefile
35+
/rakelib/
3536
/.rspec
3637
/.rubocop.yml
3738
/.travis.yml
3839
/.yardopts
3940
/spec/
41+
/.vscode/

.puppet-lint.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--relative

.sync.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@
2121
- release
2222
remove_includes:
2323
- env: PUPPET_GEM_VERSION="~> 5.0" CHECK=parallel_spec
24-
rvm: 2.4.4
25-
- env: PUPPET_GEM_VERSION="~> 4.0" CHECK=parallel_spec RUBYGEMS_VERSION=2.7.8
26-
rvm: 2.1.9
24+
rvm: 2.4.5
25+
stage: spec
2726

2827
Gemfile:
2928
optional:

.travis.yml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
dist: trusty
32
language: ruby
43
cache: bundler
54
before_install:
@@ -12,34 +11,49 @@ script:
1211
- 'bundle exec rake $CHECK'
1312
bundler_args: --without system_tests
1413
rvm:
15-
- 2.5.1
14+
- 2.5.3
1615
env:
1716
global:
1817
- BEAKER_PUPPET_COLLECTION=puppet6 PUPPET_GEM_VERSION="~> 6.0"
1918
- GEM_BOLT=true
19+
stages:
20+
- static
21+
- spec
22+
- acceptance
23+
-
24+
if: tag =~ ^v\d
25+
name: deploy
2026
matrix:
2127
fast_finish: true
2228
include:
2329
-
2430
bundler_args:
2531
dist: trusty
2632
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_set=docker/centos-7 BEAKER_TESTMODE=apply
27-
rvm: 2.5.1
33+
rvm: 2.5.3
2834
script: bundle exec rake beaker
2935
services: docker
36+
stage: acceptance
3037
sudo: required
3138
-
3239
bundler_args:
3340
dist: trusty
3441
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_set=docker/ubuntu-14.04 BEAKER_TESTMODE=apply
35-
rvm: 2.5.1
42+
rvm: 2.5.3
3643
script: bundle exec rake beaker
3744
services: docker
45+
stage: acceptance
3846
sudo: required
3947
-
40-
env: CHECK="syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop"
48+
env: CHECK="check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop syntax lint metadata_lint"
49+
stage: static
4150
-
42-
env: CHECK=parallel_spec
51+
env: PUPPET_GEM_VERSION="~> 6.0" CHECK=parallel_spec
52+
rvm: 2.5.3
53+
stage: spec
54+
-
55+
env: DEPLOY_TO_FORGE=yes
56+
stage: deploy
4357
branches:
4458
only:
4559
- master

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ end
3232
group :system_tests do
3333
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]
3434
gem "puppet-module-win-system-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
35-
gem "bolt", "~> 1.15", require: false if ENV['GEM_BOLT']
35+
gem "bolt", '~> 1.15', require: false if ENV['GEM_BOLT']
3636
end
3737

3838
puppet_version = ENV['PUPPET_GEM_VERSION']

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ version: 1.1.x.{build}
33
branches:
44
only:
55
- master
6+
- release
67
skip_commits:
78
message: /^\(?doc\)?.*/
89
clone_depth: 10

metadata.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"summary": "Tasks that manipulate a service",
66
"license": "Apache-2.0",
77
"source": "https://github.com/puppetlabs/puppetlabs-service",
8-
"dependencies": [],
8+
"dependencies": [
9+
10+
],
911
"operatingsystem_support": [
1012
{
1113
"operatingsystem": "Debian",
@@ -63,7 +65,7 @@
6365
}
6466
],
6567
"description": "Tasks that manipulate a service",
66-
"pdk-version": "1.9.0",
67-
"template-url": "https://github.com/puppetlabs/pdk-templates.git",
68-
"template-ref": "heads/master-0-gfde5699"
68+
"pdk-version": "1.10.0",
69+
"template-url": "https://github.com/puppetlabs/pdk-templates#master",
70+
"template-ref": "heads/master-0-gf778803"
6971
}

0 commit comments

Comments
 (0)