Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
digicosmos86 committed Jul 24, 2024
1 parent 5f03296 commit 919a0e4
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 129 deletions.
127 changes: 0 additions & 127 deletions .github/workflows/kitchen-tests.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- uses: TimonVS/pr-labeler-action@v3
- uses: TimonVS/pr-labeler-action@v5
with:
configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

43 changes: 43 additions & 0 deletions .github/workflows/terraform-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: kitchen-tests

on:
push:
branches:
- "main"
tags:
- "v*.*.*"
pull_request:
branches:
- "main"

env:
REGISTRY: ghcr.io
IMAGE_NAME: brownuniversity/terraform-gcp-cluster

jobs:
terraform_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Credential File
run: |
echo "$GCP_CREDENTIAL_JSON" | base64 -d > /tmp/credentials.json
env:
GCP_CREDENTIAL_JSON: ${{ secrets.GCP_CI_CREDENTIAL_JSON}}
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.9.2
- name: Run terraform test
run: |
terraform init
terraform test -filter=tests/test_simple_cluster.tftest.hcl
terraform test -filter=tests/test_brown_modules.tftest.hcl
env:
TF_VAR_billing_account: ${{ secrets.GCP_BURWOOD_BILLING_ACCOUNT }}
TF_VAR_org_id: ${{ secrets.GCP_ORG_ID }}
TF_VAR_folder_id: ${{ secrets.GCP_CCV_CI_FOLDER_ID }}
TF_VAR_network_name: "network-01"
TF_VAR_subnet_name: "subnet-01"
TF_VAR_routing_mode: "REGIONAL"
GOOGLE_APPLICATION_CREDENTIALS: /tmp/credentials.json

0 comments on commit 919a0e4

Please sign in to comment.