Changes to support TProxy #334
Workflow file for this run
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: | |
runs-on: ubuntu-latest | |
needs: | |
- action-lint | |
defaults: | |
run: | |
working-directory: ./test/acceptance | |
outputs: | |
go-version: ${{ steps.get-go-version.outputs.go-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Determine Go version | |
id: get-go-version | |
# We use .go-version as our source of truth for current Go | |
# version, because "goenv" can react to it automatically. | |
run: | | |
echo "Building with Go $(cat .go-version)" | |
echo "go-version=$(cat .go-version)" >> "$GITHUB_OUTPUT" | |
go-fmt-and-lint-acceptance: | |
runs-on: ubuntu-latest | |
needs: | |
- get-go-version | |
defaults: | |
run: | |
working-directory: ./test/acceptance | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
cache-dependency-path: ./test/acceptance/go.sum | |
- name: Go CI lint | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 | |
with: | |
args: "--verbose --enable gofmt" | |
only-new-issues: false | |
skip-pkg-cache: true | |
skip-build-cache: true | |
working-directory: ./test/acceptance | |
- name: Lint Consul retry | |
run: | | |
go install github.com/hashicorp/[email protected] | |
lint-consul-retry | |
terraform-fmt: | |
runs-on: ubuntu-latest | |
needs: | |
- action-lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.4.2 | |
- name: Validate | |
run: terraform fmt -check -recursive . | |
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.17-FARGATE | |
include: | |
- name: acceptance-1.17-FARGATE-HCP | |
enable-hcp: true | |
launch-type: FARGATE | |
- name: acceptance-1.17-FARGATE | |
enable-hcp: false | |
launch-type: FARGATE | |
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 }} | |
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.17-EC2 | |
include: | |
- name: acceptance-1.17-EC2-HCP | |
enable-hcp: true | |
launch-type: EC2 | |
- name: acceptance-1.17-EC2 | |
enable-hcp: false | |
launch-type: EC2 | |
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 }} | |
secrets: inherit |