Skip to content

Commit

Permalink
just a test
Browse files Browse the repository at this point in the history
  • Loading branch information
digorgonzola committed Dec 5, 2023
1 parent 51ca97f commit f082d6b
Showing 1 changed file with 113 additions and 111 deletions.
224 changes: 113 additions & 111 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,116 +34,118 @@ jobs:
run: |
BRANCH_NAME=${{ github.head_ref || github.ref_name }}
echo TAG=${{ env.TAG_PREFIX}}-${BRANCH_NAME/\//_} >> $GITHUB_ENV
echo $TAG
echo ${{ env.TAG }}
echo "image_tag=${{ env.TAG }}" >> $GITHUB_OUTPUT
- name: set tag when running locally in act
if: ${{ env.ACT }}
run: |
echo TAG=latest >> $GITHUB_ENV
- name: Set up docker structure test
run: >
curl -LO
https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
&& chmod +x container-structure-test-linux-amd64 && sudo mv container-structure-test-linux-amd64
/usr/local/bin/container-structure-test
- name: Configure AWS Credentials
if: ${{ !env.ACT }}
uses: aws-actions/configure-aws-credentials@v4
with:
audience: sts.amazonaws.com
aws-region: ${{ env.AWS_REGION }}
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}

- name: Login to ECR
if: ${{ !env.ACT }}
uses: docker/login-action@v3
with:
registry: ${{ vars.ECR_REGISTRY }}

- name: Build
uses: docker/build-push-action@v5
with:
context: .
load: true
tags: ${{ env.TAG }}

- name: Test
run: |
container-structure-test test --image ${{ env.TAG }} --config tests/config.yaml
- name: Build and push
if: ${{ !env.ACT }}
uses: docker/build-push-action@v5
with:
context: .
# platforms: linux/amd64,linux/arm64
push: true
tags: ${{ vars.ECR_REGISTRY }}/${{ vars.ECR_REPOSITORY }}:${{ env.TAG }}

staging_deploy_plan:
runs-on: ubuntu-latest
environment: staging
needs: build_test_push
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Configure AWS Credentials
if: ${{ !env.ACT }}
uses: aws-actions/configure-aws-credentials@v4
with:
audience: sts.amazonaws.com
aws-region: ${{ vars.AWS_REGION }}
role-to-assume: arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/${{ vars.AWS_ROLE_NAME }}

- name: Terragrunt Plan
id: terragrunt_plan
uses: gruntwork-io/[email protected]
with:
tf_version: '1.5.7'
tg_version: '0.51.0'
tg_dir: './deploy/tg'
tg_command: 'run-all plan'
env:
AWS_ACCOUNT_ID: ${{ vars.AWS_ACCOUNT_ID }}
AWS_REGION: ${{ vars.AWS_REGION }}
ECR_REGISTRY: ${{ vars.ECR_REGISTRY }}
IMAGE_TAG: ${{ needs.build_test_push.outputs.image_tag }}
PARAMETER_NAME: ${{ vars.PARAMETER_NAME }}
TF_INPUT: 0
TF_IN_AUTOMATION: true

staging_deploy_apply:
runs-on: ubuntu-latest
environment: staging
needs: [staging_deploy_plan, build_test_push]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Configure AWS Credentials
if: ${{ !env.ACT }}
uses: aws-actions/configure-aws-credentials@v4
with:
audience: sts.amazonaws.com
aws-region: ${{ vars.AWS_REGION }}
role-to-assume: arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/${{ vars.AWS_ROLE_NAME }}

- name: Terragrunt Apply
id: terragrunt_plan
uses: gruntwork-io/[email protected]
with:
tf_version: '1.5.7'
tg_version: '0.51.0'
tg_dir: './deploy/tg'
tg_command: 'run-all apply'
env:
AWS_ACCOUNT_ID: ${{ vars.AWS_ACCOUNT_ID }}
AWS_REGION: ${{ vars.AWS_REGION }}
ECR_REGISTRY: ${{ vars.ECR_REGISTRY }}
IMAGE_TAG: ${{ needs.build_test_push.outputs.image_tag }}
PARAMETER_NAME: ${{ vars.PARAMETER_NAME }}
TF_INPUT: 0
TF_IN_AUTOMATION: true
# - name: set tag when running locally in act
# if: ${{ env.ACT }}
# run: |
# echo TAG=latest >> $GITHUB_ENV
#
# - name: Set up docker structure test
# run: >
# curl -LO
# https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
# && chmod +x container-structure-test-linux-amd64 && sudo mv container-structure-test-linux-amd64
# /usr/local/bin/container-structure-test
#
# - name: Configure AWS Credentials
# if: ${{ !env.ACT }}
# uses: aws-actions/configure-aws-credentials@v4
# with:
# audience: sts.amazonaws.com
# aws-region: ${{ env.AWS_REGION }}
# role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
#
# - name: Login to ECR
# if: ${{ !env.ACT }}
# uses: docker/login-action@v3
# with:
# registry: ${{ vars.ECR_REGISTRY }}
#
# - name: Build
# uses: docker/build-push-action@v5
# with:
# context: .
# load: true
# tags: ${{ env.TAG }}
#
# - name: Test
# run: |
# container-structure-test test --image ${{ env.TAG }} --config tests/config.yaml
#
# - name: Build and push
# if: ${{ !env.ACT }}
# uses: docker/build-push-action@v5
# with:
# context: .
## platforms: linux/amd64,linux/arm64
# push: true
# tags: ${{ vars.ECR_REGISTRY }}/${{ vars.ECR_REPOSITORY }}:${{ env.TAG }}
#
# staging_deploy_plan:
# runs-on: ubuntu-latest
# environment: staging
# needs: build_test_push
# steps:
# - name: Checkout
# uses: actions/checkout@v4
#
# - name: Configure AWS Credentials
# if: ${{ !env.ACT }}
# uses: aws-actions/configure-aws-credentials@v4
# with:
# audience: sts.amazonaws.com
# aws-region: ${{ vars.AWS_REGION }}
# role-to-assume: arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/${{ vars.AWS_ROLE_NAME }}
#
# - name: Terragrunt Plan
# id: terragrunt_plan
# uses: gruntwork-io/[email protected]
# with:
# tf_version: '1.5.7'
# tg_version: '0.51.0'
# tg_dir: './deploy/tg'
# tg_command: 'run-all plan'
# env:
# AWS_ACCOUNT_ID: ${{ vars.AWS_ACCOUNT_ID }}
# AWS_REGION: ${{ vars.AWS_REGION }}
# ECR_REGISTRY: ${{ vars.ECR_REGISTRY }}
# IMAGE_TAG: ${{ needs.build_test_push.outputs.image_tag }}
# PARAMETER_NAME: ${{ vars.PARAMETER_NAME }}
# TF_INPUT: 0
# TF_IN_AUTOMATION: true
#
# staging_deploy_apply:
# runs-on: ubuntu-latest
# environment: staging
# needs: [staging_deploy_plan, build_test_push]
# steps:
# - name: Checkout
# uses: actions/checkout@v4
#
# - name: Configure AWS Credentials
# if: ${{ !env.ACT }}
# uses: aws-actions/configure-aws-credentials@v4
# with:
# audience: sts.amazonaws.com
# aws-region: ${{ vars.AWS_REGION }}
# role-to-assume: arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/${{ vars.AWS_ROLE_NAME }}
#
# - name: Terragrunt Apply
# id: terragrunt_plan
# uses: gruntwork-io/[email protected]
# with:
# tf_version: '1.5.7'
# tg_version: '0.51.0'
# tg_dir: './deploy/tg'
# tg_command: 'run-all apply'
# env:
# AWS_ACCOUNT_ID: ${{ vars.AWS_ACCOUNT_ID }}
# AWS_REGION: ${{ vars.AWS_REGION }}
# ECR_REGISTRY: ${{ vars.ECR_REGISTRY }}
# IMAGE_TAG: ${{ needs.build_test_push.outputs.image_tag }}
# PARAMETER_NAME: ${{ vars.PARAMETER_NAME }}
# TF_INPUT: 0
# TF_IN_AUTOMATION: true

0 comments on commit f082d6b

Please sign in to comment.