Skip to content

Commit

Permalink
Do some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cnunciato committed Jul 6, 2024
1 parent 3ee0a4e commit cabb5b8
Show file tree
Hide file tree
Showing 10 changed files with 417 additions and 2,545 deletions.
183 changes: 183 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
name: Set up the environment
description: Sets up the current environment by installing tools and dependencies and authenticating with cloud providers.

inputs:
aws-access-key-id:
required: true

aws-secret-access-key:
required: true

aws-role-to-assume:
required: true

aws-region:
default: us-west-2

aws-role-duration-seconds:
default: 7200

aws-role-session-name:
default: examples@github-actions

google-service-account-email:
default: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com

google-project-name:
default: pulumi-ci-gcp-provider

google-project-number:
default: 895284651812

google-workload-identity-pool:
default: pulumi-ci

google-workload-identity-provider:
default: pulumi-ci

google-region:
default: us-central1

google-zone:
default: us-central1-a

github-token:
required: true

node-version:
default: 18

python-version:
default: 3.8

go-version:
default: 1.21

dotnet-version:
default: 6

gotestfmt-version:
default: v2.5.0

pulumi-version:
default: dev

outputs:
aws-access-key-id:
value: ${{ steps.aws-auth.outputs.aws-access-key-id }}

aws-secret-access-key:
value: ${{ steps.aws-auth.outputs.aws-secret-access-key }}

aws-session-token:
value: ${{ steps.aws-auth.outputs.aws-session-token }}

aws-region:
value: ${{ inputs.aws-region }}

google-project-name:
value: ${{ inputs.google-project-name }}

google-region:
value: ${{ inputs.google-region }}

google-zone:
value: ${{ inputs.google-zone}}

runs:
using: composite
steps:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{inputs.dotnet-version}}

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{inputs.node-version}}

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{inputs.python-version}}

- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{inputs.go-version}}
cache-dependency-path: "**/go.sum"

- name: Install aws-iam-authenticator
run: |
curl https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/aws-iam-authenticator -o aws-iam-authenticator
chmod +x ./aws-iam-authenticator
sudo mv aws-iam-authenticator /usr/local/bin
shell: bash

- name: Install Kubectl
run: |
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv kubectl /usr/local/bin
shell: bash

- name: Install and configure Helm
run: |
curl -o- -L https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get | bash
helm init -c
helm repo add bitnami https://charts.bitnami.com/bitnami
shell: bash



- name: Install testing dependencies
run: make ensure
shell: bash

- name: Install gotestfmt
uses: GoTestTools/gotestfmt-action@v2
with:
version: ${{ inputs.gotestfmt-version }}
token: ${{ inputs.github-token }}

- name: Install Pulumi
uses: pulumi/actions@v5
with:
pulumi-version: ${{ inputs.pulumi-version }}

- run: echo "Pulumi $(pulumi version) is installed"
shell: bash

- name: Authenticate with AWS
id: aws-auth
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ inputs.aws-access-key-id }}
aws-secret-access-key: ${{ inputs.aws-secret-access-key }}
aws-region: ${{ inputs.aws-region }}
role-to-assume: ${{ inputs.aws-role-to-assume }}
role-duration-seconds: ${{ inputs.role-duration-seconds }}
role-session-name: ${{ inputs.role-session-name }}
unset-current-credentials: true
output-credentials: true

- name: Authenticate with Google Cloud
uses: google-github-actions/auth@v2
with:
service_account: ${{ inputs.google-service-account-email }}
workload_identity_provider: projects/${{ inputs.google-project-number }}/locations/global/workloadIdentityPools/${{ inputs.google-workload-identity-pool }}/providers/${{ inputs.google-workload-identity-provider }}

- name: Install gcloud auth
uses: google-github-actions/setup-gcloud@v2
with:
install_components: gke-gcloud-auth-plugin

- name: Configure gcloud CLI
run: |
gcloud config set disable_prompts true
shell: bash

- name: Authenticate with Google Cloud Registry
run: gcloud --quiet auth configure-docker
shell: bash
4 changes: 0 additions & 4 deletions .github/workflows/README.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Command Dispatch for testing
name: Command dispatch for testing
on:
issue_comment:
types:
Expand All @@ -13,7 +13,7 @@ jobs:
- name: Run Build
uses: peter-evans/slash-command-dispatch@v2
with:
commands: run-example-tests
commands: run-tests
issue-type: pull-request
permission: write
reaction-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading

0 comments on commit cabb5b8

Please sign in to comment.