This is a terraform module that sets up self hosted github runners on AWS along with the infra needed to autoscale them
Terraform code that uses this module specify the tag (version of test-infra) that they use via a file called Terrafile
. We need to create a new tag for any changes here that we want to deploy and update the Terrafile
to refer to that tag:
- Merge any changes to this folder to
main
and wait for theCreate Release Tag
workflow to run (or trigger it manually). This will give your commit a unique release tag. - In the terraform script that consumes this module, go to the
Terrafile
file and modify thetag
forterraform-aws-github-runner
to point to the new release tag. - Now when you apply the terraform code that uses this module, it'll pull in your changes (for PyTorch CI, there are workflows you trigger in pytorch-gha-infra and ci-infra for this step).
├── modules
| ├── download-lambda
| ├── runner-binaries-syncer # AWS Lambda func that
| ├── runners # AWS Lambda func that scales runners up and down based
| | # on SQS Events
| ├── runners-instances # Defines how instances hosting new runners will be configured
| ├── setup-iam-permissions # See Readme in the folder
| └── webhook # AWS Lambda func that receives Github
| # webhooks and generates SQS events that
| # trigger scale up requests
├── policies
├── templates
└── terraform_migrations
This diagram shows how the runners function once deployed to AWS