DEV Community

vishal9629
vishal9629

Posted on

Infinitely scalable GitHub Actions runners on AWS with Cirun

Cirun
Using the features of cloud providers like AWS and GCP, we can create Infinitely scalable GitHub Actions runners on Cloud but why do we need them?

Understanding The Problem

In the tech world, everyone wants CI/CD. As we all know GitHub Actions is a CI/CD platform used to automate the builds, test, and deployment process. GitHub Actions uses workflows to automate the whole process. We can run the builds and tests on every push and pull request, or even on merging the pull request with workflows. For all this GitHub Actions use its cloud machines but also they have some limitations.

  1. GitHub Actions does not provide support for custom images, or customized configurations of hardware. Sometimes users need a custom image to complete their build and run tests on it according to their use case. Also, GitHub Actions provides a fixed configuration of the systems.GitHub Actions Hardware

  2. It does not provide users with GPU instances. When working on stuff like MLops that may requires GPU to build.

  3. GitHub Actions provide you with limited execution time for each run in a workflow that is 6 hours. If a job takes more than this time to execute it will automatically terminate. GitHub provides you with 2000 minutes/month and 500 MB of free storage. To use beyond these limits we have to pay some amount. You can see the pricing here.

What if we can automate this whole process on our cloud and have minimum cost?

Definitely, we can do this on our cloud using GitHub actions feature self-hosted runners and Cirun. Also, we can reduce the cost by doing Infinitely scalable GitHub Actions runners on the cloud with Cirun.

About Cirun and Infinitely scalable runners

Cirun provides self-hosted GitHub Actions Runners on your clouds.
Flowchart
Before understanding the flowchart let's understand:

How does Infinitely scalable Runners works?

Sometimes we may don't have limit of time and we want the minimum cost of our process. Clouds like AWS and GCP allow us to do so with an option. In the case of AWS, it is SPOT. A spot instance allows us to make a machine whenever capacity is available with no time constraints. To automate this whole process, Cirun provide us with a flag named preemptible. When we pass value true, It creates the cheapest self-hosted VM.

From Flowchart

We can see whenever an event is triggered on the repository. GitHub sends a webhook to cirun. Cirun authenticates the cloud using credentials provided by you. It takes Machine configurations and preemptible flag defined in .cirun.yml from your GitHub repository and sends a request to the cloud for Spot instance. Cloud keeps checking for available capacity. Whenever it meets its conditions, the cloud will create a spot instance using .cirun.yml file, and then all workflow files defined on the GitHub repo will run on the instance. Besides all of this, Cirun continuously checks whether the workflow is completed and the machine is idle or not? If condition is satisfied then cirun delete's the VM. By doing this we have minimum cost for our desired machine.

This blog explains how to set up Infinitely scalable GitHub Actions runners on AWS with Cirun. For reference, you can check cirun documentation.

The steps are almost the same for other cloud providers which provide the scalable option.

  1. In Cirun, log in with GitHub
  2. Install Cirun on your Repository
  3. Toggle on the Repository to activate.
  4. Pass your cloud credentials and connect AWS with Cirun
  5. Add workflow file and .cirun.yml file on your repository
  6. In .cirun.yml along with machine config also specify the flag preemptible: true
  7. Now push a trigger in your Repository

It's done! πŸš€

Demo

In Cirun login with GitHub

Login with GitHub

Install Cirun on your Repository

Install github to repo

  1. Configure Cirun Install
  2. Give access to repositories Access to repo
  3. To activate the repository toggle the button.

Toggle on the repo

Adding AWS to Cirun
  1. Navigate to IAM user.

AWS IAM

AWS user console

  • Add users
    Adding user

  • Add user with credential type programmatic access

Access key type

  • Add user with permission AmazonEC2FullAccess
    AWS permission

  • Generate Access key ID and Access Secret key

Paste keys in cirun dashboard

  • Paste your Access key Id and Access Secret key in Cirun dashboard

Paste your keys

Add Workflow file on your Repository

Create a aws.yml file inside .github/workflows. In workflow you can put jobs you want. For example paste the yml file given below to print the system info, memory, architecture. For latest file you can visit GitHub repo.

name: AWS

on: [push]

jobs:
  build:

    runs-on: [self-hosted, cirun-aws-runner]
    steps:
    - uses: actions/checkout@v3
    - name: System Info
      run: |
        uname -a
    - name: Print Memory
      run: |
        free -m
    - name: Print Architecture
      run: |
        dpkg --print-architecture
Enter fullscreen mode Exit fullscreen mode

Now add a .cirun.yml file in your Repository

In this yml, we define the configuration and flags we want on your clouds (AWS, GCP, Oracle, etc.), instance_type, and machine_image. For Infinitely scalable GitHub Actions runners we must have pass flag preemptible: true.
To explore more you can visit cirun documentation.

In this blog, we are creating .cirun.yml file for the AWS cloud with the infinitely scalable runner.

runners:
  - name: "aws-runner"
    cloud: "aws"
    instance_type: "t2.micro"
    machine_image: "ami-05e786af422f8082a"
    preemptible: "true"
    workflow: .github/workflows/aws.yml
    labels:
      - "cirun-aws-runner"
Enter fullscreen mode Exit fullscreen mode

Pushing a trigger

  • To trigger an event we must commit something in our repo.

New trigger

  • With a new commit, cirun sends a request to the cloud then the cloud makes a spot instance and runs the workflow

Running workflow

  • Printed the system info, memory info, system architecture.

Printed jobs

Conclusion

GitHub Actions provide us with self-hosted runners for your repository but setting up them is a tedious task. You can automate the set-up process using cirun. Cirun charges some amount for private repositories and you have to pay for what you use on your cloud. Cirun supports all major cloud providers at this time. (AWS, GCP, Digital Ocean, Azure, Openstack, Oracle).
For more information you can visit cirun.io.

References

If you have any questions and feedback about this blog, feel free to comment or reach out Cirun.io.

Top comments (0)