[NET-9196] Test consul-ecs pre-release 0.8.1-dev #435
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
# Copyright (c) HashiCorp, Inc. | |
# SPDX-License-Identifier: MPL-2.0 | |
name: terraform-ci | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release/**' | |
pull_request: | |
branches: | |
- 'main' | |
- 'release/**' | |
permissions: {} | |
jobs: | |
action-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Lint workflow | |
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint:latest | |
with: | |
# we need to ignore the SC2086 rule to pass unescaped $VARS to the terraform commands | |
args: -ignore SC2086 | |
get-go-version: | |
uses: ./.github/workflows/reusable-get-go-version.yml | |
go-fmt-and-lint-acceptance: | |
needs: | |
- get-go-version | |
uses: ./.github/workflows/reusable-go-fmt-and-lint.yml | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
terraform-fmt: | |
needs: | |
- action-lint | |
uses: ./.github/workflows/reusable-terraform-fmt.yml | |
acceptance-fargate: | |
needs: | |
- get-go-version | |
- terraform-fmt | |
- go-fmt-and-lint-acceptance | |
strategy: | |
# We have a limit of 6 HCP Consul clusters. | |
# The following controls whether to enable HCP when testing release branches. | |
# HCP is always disabled for tests on PRs. | |
matrix: | |
name: | |
- acceptance-1.17-FARGATE-HCP | |
- acceptance-1.18-FARGATE | |
include: | |
- name: acceptance-1.17-FARGATE-HCP | |
enable-hcp: true | |
launch-type: FARGATE | |
consul-version: 1.17.1 | |
- name: acceptance-1.18-FARGATE | |
enable-hcp: false | |
launch-type: FARGATE | |
consul-version: 1.18.0 | |
fail-fast: false | |
uses: ./.github/workflows/reusable-ecs-acceptance.yml | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
name: ${{ matrix.name }} | |
launch-type: ${{ matrix.launch-type }} | |
enable-hcp: ${{ matrix.enable-hcp }} | |
consul-version: ${{ matrix.consul-version }} | |
secrets: inherit | |
acceptance-ec2: | |
needs: | |
- get-go-version | |
- acceptance-fargate | |
strategy: | |
# We have a limit of 6 HCP Consul clusters. | |
# The following controls whether to enable HCP when testing release branches. | |
# HCP is always disabled for tests on PRs. | |
matrix: | |
name: | |
- acceptance-1.17-EC2-HCP | |
- acceptance-1.18-EC2 | |
include: | |
- name: acceptance-1.17-EC2-HCP | |
enable-hcp: true | |
launch-type: EC2 | |
consul-version: 1.17.1 | |
- name: acceptance-1.18-EC2 | |
enable-hcp: false | |
launch-type: EC2 | |
consul-version: 1.18.0 | |
fail-fast: false | |
uses: ./.github/workflows/reusable-ecs-acceptance.yml | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
name: ${{ matrix.name }} | |
launch-type: ${{ matrix.launch-type }} | |
enable-hcp: ${{ matrix.enable-hcp }} | |
consul-version: ${{ matrix.consul-version }} | |
secrets: inherit |