diff options
author | mrichomme <morgan.richomme@orange.com> | 2021-02-03 15:20:21 +0100 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2021-02-03 16:54:11 +0100 |
commit | 70a97ad469f64419d3dfb575da63d35cb2b29fc0 (patch) | |
tree | a022f1e04cbac6efd30920f2375ed9cb3280477d /jjb | |
parent | 2e5a1a2e44d3eb5a0c2dd496189f2cf058381ac6 (diff) |
remove terragrunt check as it has been moved in a dedicated repo
Issue-ID: INT-1792
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: I966378eb9cd3bcbdeb70af2d1db4fef1b65df338
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/integration/integration-terraform.yaml | 37 |
1 files changed, 25 insertions, 12 deletions
diff --git a/jjb/integration/integration-terraform.yaml b/jjb/integration/integration-terraform.yaml index 2a7fc5dcf..252e2d312 100644 --- a/jjb/integration/integration-terraform.yaml +++ b/jjb/integration/integration-terraform.yaml @@ -8,20 +8,33 @@ - gerrit-info-yaml-verify - project: - name: integration-terraform-validate + name: integration-terraform-linters project: integration/terraform project-name: integration-terraform + python-version: python3 jobs: - - integration-terraform-verify + - integration-linters subproject: - - 'openlab': - tox-dir: 'openlab' - tox-envs: 'terraform' - pattern: 'openlab/**' - - 'terragrunt': - tox-dir: 'terragrunt' - tox-envs: 'terragrunt' - pattern: 'terragrunt/**' + - 'yaml': + tox-dir: '.' + tox-envs: 'yaml' + pattern: '**/*.yaml' + - 'yml': + tox-dir: '.' + tox-envs: 'yaml' + pattern: '**/*.yml' + - 'json': + tox-dir: '.' + tox-envs: 'json' + pattern: '**/*.json' + - 'python': + tox-dir: '.' + tox-envs: 'py' + pattern: '**/*.py' + - 'md': + tox-dir: '.' + tox-envs: 'md' + pattern: '**/*.md' stream: - - 'master': - branch: 'master' + - 'master': + branch: 'master' |