Skip to content

Commit

Permalink
Merge branch 'main' into lorenyu/platform-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenyu committed Dec 20, 2024
2 parents 43b79c6 + 1c7b9c2 commit 68a122d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 23 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ jobs:
with:
ref: ${{ inputs.ref }}

- name: Set up Terraform
uses: ./.github/actions/setup-terraform

- name: Configure AWS credentials
uses: ./.github/actions/configure-aws-credentials
with:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/check-infra-deploy-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.8.3
terraform_wrapper: false

- name: Set up Terraform
uses: ./.github/actions/setup-terraform

- name: Configure AWS credentials
uses: ./.github/actions/configure-aws-credentials
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci-{{app_name}}-infra-service.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.8.3
terraform_wrapper: false
- name: Set up Terraform
uses: ./.github/actions/setup-terraform

- uses: actions/setup-go@v5
with:
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/pr-environment-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.8.3
terraform_wrapper: false
- name: Set up Terraform
uses: ./.github/actions/setup-terraform

- name: Configure AWS credentials
uses: ./.github/actions/configure-aws-credentials
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/pr-environment-destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.8.3
terraform_wrapper: false
- name: Set up Terraform
uses: ./.github/actions/setup-terraform

- name: Configure AWS credentials
uses: ./.github/actions/configure-aws-credentials
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/template-only-ci-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@ jobs:
with:
path: template-infra

- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.8.3
terraform_wrapper: false
- name: Set up Terraform
uses: ./.github/actions/setup-terraform

- uses: actions/setup-go@v5
with:
Expand All @@ -49,7 +47,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
python-version: "3.13"

- name: Install nava-platform CLI
run: pipx install --python "$(which python)" git+https://github.com/navapbc/platform-cli
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ e2e-test: e2e-build
-v $(PWD)/e2e/blob-report:/e2e/blob-report \
$(E2E_IMAGE_NAME) \
$(E2E_ARGS)
@echo "Run 'make e2e-show-report' to view the test report"

e2e-test-native: ## Run end-to-end tests natively
@:$(call check_defined, APP_NAME, You must pass in a specific APP_NAME)
Expand Down

0 comments on commit 68a122d

Please sign in to comment.