Skip to content

Commit 9df45f8

Browse files
committed
(IAC-365) updating tokens and dataset for honeycomb
1 parent c70c339 commit 9df45f8

File tree

6 files changed

+18
-3
lines changed

6 files changed

+18
-3
lines changed

.sync.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
include_todos: true
66
selected_profile: false
77
".travis.yml":
8+
global_env:
9+
- HONEYCOMB_WRITEKEY="7f3c63a70eecc61d635917de46bea4e6",HONEYCOMB_DATASET="litmus tests"
810
deploy_to_forge:
911
enabled: false
1012
simplecov: true
@@ -22,6 +24,9 @@
2224
slack:
2325
secure: Yqv+S1Bwz19bor4xu3v7i5rLPzQuwTSZhO5wjsrX+jhKDN5/+e7e53x/v3Onjdrn9rjwFAxwzciAte0MO96xLFjyzWyUSziGur8/v3TcbRnnVQMOnIEj0HfmyLbx1cpxGK9V8MPsWQVAoHCklTtZIsRjMw0PcD8+aVKVF3NcBK4=
2426
appveyor.yml:
27+
environment:
28+
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6
29+
HONEYCOMB_DATASET: litmus tests
2530
simplecov: true
2631
install_post:
2732
- >-

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@ before_install:
1010
- rm -f Gemfile.lock
1111
- "# Update system gems if requested. This is useful to temporarily workaround troubles in the test runner"
1212
- "# See https://github.com/puppetlabs/pdk-templates/commit/705154d5c437796b821691b707156e1b056d244f for an example of how this was used"
13-
- '[ -z "$RUBYGEMS_VERSION" ] || gem update --system $RUBYGEMS_VERSION'
13+
- "# Ignore exit code of SIGPIPE'd yes to not fail with shell's pipefail set"
14+
- '[ -z "$RUBYGEMS_VERSION" ] || (yes || true) | gem update --system $RUBYGEMS_VERSION'
1415
- gem --version
1516
- bundle -v
1617
script:
1718
- 'SIMPLECOV=yes bundle exec rake $CHECK'
1819
bundler_args: --without system_tests
1920
rvm:
2021
- 2.5.3
22+
env:
23+
global:
24+
- HONEYCOMB_WRITEKEY="7f3c63a70eecc61d635917de46bea4e6",HONEYCOMB_DATASET="litmus tests"
2125
stages:
2226
- static
2327
- spec

Rakefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'puppet_litmus/rake_tasks' if Bundler.rubygems.find_name('puppet_litmus').any?
24
require 'puppetlabs_spec_helper/rake_tasks'
35
require 'puppet-syntax/tasks/puppet-syntax'

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ init:
1414
- 'mkdir C:\ProgramData\PuppetLabs\hiera && exit 0'
1515
- 'mkdir C:\ProgramData\PuppetLabs\puppet\var && exit 0'
1616
environment:
17+
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6
18+
HONEYCOMB_DATASET: litmus tests
1719
SIMPLECOV: yes
1820
matrix:
1921
-

metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"version_requirement": ">= 5.5.0 < 7.0.0"
7878
}
7979
],
80-
"pdk-version": "1.15.0",
80+
"pdk-version": "1.16.0",
8181
"template-url": "https://github.com/puppetlabs/pdk-templates#master",
82-
"template-ref": "heads/master-0-gcaed9d7"
82+
"template-ref": "heads/master-0-g5d52853"
8383
}

spec/spec_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'puppetlabs_spec_helper/module_spec_helper'
24
require 'rspec-puppet-facts'
35

0 commit comments

Comments
 (0)