Skip to content

Commit

Permalink
Merge pull request #191 from manheim/v5.4-dev
Browse files Browse the repository at this point in the history
Create v5.4 Release
  • Loading branch information
kmanning committed Feb 12, 2020
2 parents 5cbf731 + c78eba7 commit 00e3eed
Show file tree
Hide file tree
Showing 50 changed files with 2,296 additions and 399 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: groovy
jdk:
- openjdk9
script: ./gradlew check --info
after_success:
- ./codecov.sh
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Unreleased

# v5.4

* [Issue #87](https://github.com/manheim/terraform-pipeline/issues/87) Add travis CI support to the project
* [Issue #186](https://github.com/manheim/terraform-pipeline/issues/186) Add convenience method to detect the version of terraform
* [Issue #185](https://github.com/manheim/terraform-pipeline/issues/185) Fix defect: filename parameter is not used in TerraformPlugin.readFile

# v5.3

* [Issue #178](https://github.com/manheim/terraform-pipeline/issues/178) Fix broken link to source code in AwssumePlugin docs
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.com/manheim/terraform-pipeline.svg?branch=master)](https://travis-ci.com/manheim/terraform-pipeline)

# terraform-pipeline
A reusable pipeline template to apply terraform configuration serially across multiple environments.

Expand Down
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
apply plugin: 'groovy'
apply plugin: 'jacoco'
apply plugin: 'codenarc'

repositories {
mavenCentral()
Expand Down Expand Up @@ -30,3 +31,12 @@ sourceSets {
}

}

jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}

check.dependsOn jacocoTestReport
Loading

0 comments on commit 00e3eed

Please sign in to comment.