-
Notifications
You must be signed in to change notification settings - Fork 878
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
239 additions
and
2,539 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
name: CI setup | ||
description: 'Sets up the environment for jobs during CI workflow' | ||
|
||
inputs: | ||
|
||
aws-access-key-id: | ||
required: true | ||
|
||
aws-secret-access-key: | ||
required: true | ||
|
||
aws-role-to-assume: | ||
required: true | ||
|
||
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 | ||
|
||
google-service-account-email: | ||
default: [email protected] | ||
|
||
google-project-number: | ||
default: 895284651812 | ||
|
||
google-workload-identity-pool: | ||
default: pulumi-ci | ||
|
||
google-workload-identity-provider: | ||
default: pulumi-ci | ||
|
||
aws-region: | ||
default: us-west-2 | ||
|
||
aws-role-duration-seconds: | ||
default: 7200 | ||
|
||
aws-role-session-name: | ||
default: examples@github-actions | ||
|
||
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 Python deps | ||
run: | | ||
pip3 install virtualenv==20.0.23 | ||
pip3 install pipenv | ||
shell: bash | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{inputs.go-version}} | ||
|
||
- 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: 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: Authenticate with Google Cloud Registry | ||
run: gcloud --quiet auth configure-docker | ||
shell: bash | ||
|
||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-access-key-id: ${{ inputs.aws-access-key-id }} | ||
aws-region: ${{ inputs.aws-region }} | ||
aws-secret-access-key: ${{ inputs.aws-secret-access-key }} | ||
role-duration-seconds: ${{ inputs.role-duration-seconds }} | ||
role-session-name: ${{ inputs.role-session-name }} | ||
role-to-assume: ${{ inputs.role-to-assume }} | ||
output-credentials: true | ||
|
||
- name: Install Pulumi | ||
uses: pulumi/actions@v5 | ||
with: | ||
pulumi-version: ${{ inputs.pulumi-version }} | ||
|
||
- run: echo "Pulumi $(pulumi version) is installed" | ||
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 }} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.