Regression Tests (Go) #28
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
name: Regression Tests (Go) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
upstream-version: | |
description: Upstream aws-cdk version to use in tests | |
required: false | |
env: | |
AWS_ACCESS_KEY_ID: test | |
AWS_SECRET_ACCESS_KEY: test | |
jobs: | |
integration-go: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
# The AWS CDK only supports third-party languages "until its EOL (End Of Life) shared by the vendor or community" | |
# https://github.com/aws/aws-cdk | |
# Golang EOL overview: https://endoflife.date/go | |
- { language: go, node-version: '16.x', go-version: '1.17.8', region: us-east-1} | |
- { language: go, node-version: '16.x', go-version: '1.18', region: us-east-1} | |
- { language: go, node-version: '18.x', go-version: '1.20', region: us-east-1} | |
env: | |
AWS_REGION: ${{ matrix.region }} | |
AWS_DEFAULT_REGION: ${{ matrix.region }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: repo | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install dependencies for aws-cdk-local | |
working-directory: repo | |
run: | | |
npm install | |
npm install aws-cdk | |
echo "$(pwd)/bin" >> $GITHUB_PATH | |
- name: Install specific aws-cdk version | |
working-directory: repo | |
if: inputs.upstream-version | |
run: npm install aws-cdk@${{ inputs.upstream-version }} | |
- name: Verify specific aws-cdk version is used by cdklocal | |
if: inputs.upstream-version | |
run: | | |
[[ $(cdklocal --version) =~ ^${{ inputs.upstream-version }}.* ]] || exit 1 | |
- name: Install localstack CLI | |
run: pip install localstack | |
- name: Create temporary directory for test | |
run: mkdir cdk-test | |
- name: Initialize new CDK app | |
working-directory: cdk-test | |
run: cdklocal init app --language=${{ matrix.language }} | |
- name: Start and wait for localstack (Community) | |
timeout-minutes: 10 | |
run: | | |
docker pull localstack/localstack:latest | |
localstack start -d | |
localstack wait -t 30 | |
- name: Install go dependencies | |
working-directory: cdk-test | |
run: go get | |
- name: Run bootstrap | |
working-directory: cdk-test | |
timeout-minutes: 1 | |
run: cdklocal bootstrap | |
- name: Deploy | |
working-directory: cdk-test | |
timeout-minutes: 1 | |
run: cdklocal deploy --require-approval=never | |
- name: Verify successful deployment | |
run: | | |
[ $(aws cloudformation describe-stacks --endpoint-url http://localhost:4566 | jq '[ .Stacks[] | select(.StackStatus == "CREATE_COMPLETE") ] | length') -eq 2 ] || exit 1 | |
[ $(aws cloudformation describe-stacks --endpoint-url http://localhost:4566 | jq '[ .Stacks[] | select(.StackStatus == "CREATE_FAILED") ] | length') -eq 0 ] || exit 1 |