After installing RunsOn, you can execute jobs on Arm-based runners by modifying your GitHub Actions workflow files.
If you have existing GitHub Actions workflow files, you can simply change the runs-on
setting.
For example, if you have a workflow file with:
You can change the runs-on
value as shown below to invoke a new runner in your AWS account.
The runner is now an AWS EC2 Arm instance with 1 vCPU running Ubuntu 22.04.
That’s it! After about 30 seconds, you should see the job running on an Arm-based runner from your AWS account.
You can also select other instance types, such as Graviton3 or Graviton4, by using the family
parameter:
You can learn more about the supported Linux runners in the official documentation .
If you would like to further customize the CPU count, RAM, disk sizes, and more, you can review the job labels .
If you don’t have existing workflow files or want to try RunsOn by creating a new repository, you can run the commands below at a shell prompt. You will need Git (git
) and the GitHub CLI (gh
) installed. Refer to the
GitHub CLI installation instructions
if you don’t have the gh
command installed.
Create a new directory for the repository:
Use a text editor to save the workflow file below as a file named test.yml
in the .github/workflows/
directory:
Add the workflow file to the repository, and commit the changes:
Authorize GitHub so you can access your account from the command line:
Use a browser or authentication token to authorize your GitHub account.
Create the repository:
Save the project to GitHub:
The git push
command will trigger the GitHub Action to run.
You can use a browser to view the Actions tab for the repository and see the job.
You can also see the result from the command line:
Look at the output and find the ID. The output will be similar to:
Print the log for the run. Substitute your job ID for the example ID shown below.
You will see numerous details about the run, including architecture, instance name, region, instance type, and the name of the AMI (disk image).
You will also see that the instance is a spot instance (for lowest price).
You are now able to run GitHub Actions workflows on Graviton-based EC2 instances in your AWS account.