-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-3164) Update static assets (#4)
This commit normalizes static assets with other SIMP Puppet modules. In particular, Travis CI is configured to include Puppet 4.10. SIMP-3164 #comment Updated simp-tuned
- Loading branch information
Showing
6 changed files
with
33 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
--log-format="%{path}:%{line}:%{check}:%{KIND}:%{message}" | ||
--relative | ||
--no-class_inherits_from_params_class-check | ||
--no-80chars-check | ||
--no-140chars-check | ||
--no-empty_string-check | ||
--no-trailing_comma-check | ||
--no-empty_string_assignment-check | ||
# This is here because the code can't handle lookups in parameters and we have | ||
# a LOT of those | ||
--no-parameter_order-check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.1.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,33 @@ | ||
# PE/SIMP versions | ||
# app pup ruby | ||
# 2015.2 4.3 2.1.7 | ||
# 2015.3 4.3 2.1.8 | ||
# 2016.1 4.4 2.1.9 | ||
# 2016.2 4.5 2.1.9 | ||
# S6.0.0 4.7 2.1.9 | ||
# The testing matrix considers ruby/puppet versions supported by SIMP and PE: | ||
# ------------------------------------------------------------------------------ | ||
# release pup ruby eol | ||
# PE 2016.4 4.7 2.1.9 TBD (LTS) | ||
# PE 2016.5 4.8 2.1.9 2017-10-31 | ||
# SIMP6.0.0 4.8 2.1.9 TBD | ||
# PE 2017.1 4.9 2.1.9 2017-10-31 | ||
# PE 2017.2 4.10 2.1.9 TBD | ||
--- | ||
language: ruby | ||
sudo: false | ||
cache: bundler | ||
before_script: | ||
- bundle | ||
bundler_args: --without development system_tests | ||
- bundle update | ||
bundler_args: "--without development system_tests" | ||
before_install: rm Gemfile.lock || true | ||
script: | ||
- bundle exec rake test | ||
- bundle exec rake test | ||
notifications: | ||
email: false | ||
rvm: | ||
- 2.1.9 | ||
- 2.1.9 | ||
env: | ||
global: | ||
- STRICT_VARIABLES=yes | ||
- TRUSTED_NODE_DATA=yes | ||
- STRICT_VARIABLES=yes | ||
matrix: | ||
- PUPPET_VERSION="~> 4.7.0" | ||
- PUPPET_VERSION="~> 4.5.0" | ||
- PUPPET_VERSION="~> 3.8.0" | ||
- PUPPET_VERSION="~> 4.4.0" | ||
- PUPPET_VERSION="~> 4.3.0" | ||
- PUPPET_VERSION="~> 3.8.0" FUTURE_PARSER=yes | ||
- PUPPET_VERSION="~> 4.8.2" | ||
- PUPPET_VERSION="~> 4.10.0" | ||
- PUPPET_VERSION="~> 4.9.2" | ||
- PUPPET_VERSION="~> 4.7.0" | ||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- env: PUPPET_VERSION="~> 4.5.0" | ||
- env: PUPPET_VERSION="~> 3.8.0" | ||
- env: PUPPET_VERSION="~> 4.4.0" | ||
- env: PUPPET_VERSION="~> 4.3.0" | ||
- env: PUPPET_VERSION="~> 3.8.0" FUTURE_PARSER=yes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
require 'simp/rake/pupmod/helpers' | ||
require 'puppet-strings/tasks' | ||
|
||
Simp::Rake::Pupmod::Helpers.new(File.dirname(__FILE__)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters