Skip to content

Commit

Permalink
(SIMP-8703) Disable Travis CI tests (#45)
Browse files Browse the repository at this point in the history
This patch disables ALL TESTS in modules' Travis CI pipelines.
Deployment and diagnostic stages have been left to support near-term
releases, however we will shortly migrate them elsewhere as well.

SIMP-8707 #close
[SIMP-8703] #comment Updated pupmod-simp-acpid
  • Loading branch information
op-ct authored Nov 23, 2020
1 parent 3b2c1c1 commit ccb8d6b
Showing 1 changed file with 43 additions and 36 deletions.
79 changes: 43 additions & 36 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# ------------------------------------------------------------------------------
# Release Puppet Ruby EOL
# SIMP 6.4 5.5 2.4 TBD
# PE 2018.1 5.5 2.4 2020-11 (LTS)
# PE 2019.2 6.10 2.5 2019-08 (STS)
# PE 2018.1 5.5 2.4 2021-01 (LTS)
# PE 2019.2 6.18 2.5 2022-12 (LTS)
#
# https://puppet.com/docs/pe/2018.1/component_versions_in_recent_pe_releases.html
# https://puppet.com/misc/puppet-enterprise-lifecycle
Expand Down Expand Up @@ -82,40 +82,47 @@ stages:

jobs:
include:
- stage: check
name: 'Syntax, style, and validation checks'
rvm: 2.4.9
env: PUPPET_VERSION="~> 5"
script:
- bundle exec rake check:dot_underscore
- bundle exec rake check:test_file
- bundle exec rake pkg:check_version
- bundle exec rake metadata_lint
- bundle exec rake pkg:compare_latest_tag
- bundle exec rake pkg:create_tag_changelog
- bundle exec rake lint
- bundle exec puppet module build

- stage: spec
rvm: 2.4.9
name: 'Puppet 5.5 (SIMP 6.4, PE 2018.1)'
env: PUPPET_VERSION="~> 5.5.0"
script:
- bundle exec rake spec

- stage: spec
name: 'Puppet 5.x (Latest)'
rvm: 2.4.9
env: PUPPET_VERSION="~> 5.0"
script:
- bundle exec rake spec

- stage: spec
name: 'Puppet 6.10 (PE 2019.2)'
rvm: 2.5.7
env: PUPPET_VERSION="~> 6.10.0"
script:
- bundle exec rake spec
### Testing on Travis CI is indefinitely disabled
###
### See:
### * https://blog.travis-ci.com/2020-11-02-travis-ci-new-billing
### * https://simp-project.atlassian.net/browse/SIMP-8703
###
###
### - stage: check
### name: 'Syntax, style, and validation checks'
### rvm: 2.4.9
### env: PUPPET_VERSION="~> 5"
### script:
### - bundle exec rake check:dot_underscore
### - bundle exec rake check:test_file
### - bundle exec rake pkg:check_version
### - bundle exec rake metadata_lint
### - bundle exec rake pkg:compare_latest_tag
### - bundle exec rake pkg:create_tag_changelog
### - bundle exec rake lint
### - bundle exec puppet module build
###
### - stage: spec
### rvm: 2.4.9
### name: 'Puppet 5.5 (SIMP 6.4, PE 2018.1)'
### env: PUPPET_VERSION="~> 5.5.0"
### script:
### - bundle exec rake spec
###
### - stage: spec
### name: 'Puppet 5.x (Latest)'
### rvm: 2.4.9
### env: PUPPET_VERSION="~> 5.0"
### script:
### - bundle exec rake spec
###
### - stage: spec
### name: 'Puppet 6.18 (PE 2019.2)'
### rvm: 2.5.7
### env: PUPPET_VERSION="~> 6.18.0"
### script:
### - bundle exec rake spec

- stage: deploy
rvm: 2.4.9
Expand Down

0 comments on commit ccb8d6b

Please sign in to comment.