We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1869a commit 722d7c4Copy full SHA for 722d7c4
1 file changed
.cirun.yml
@@ -0,0 +1,16 @@
1
+# Self-Hosted Github Action Runners on AWS via Cirun.io
2
+# Reference: https://docs.cirun.io/reference/yaml
3
+runners:
4
+ - name: "aws-runner-graviton"
5
+ # Cloud Provider: AWS
6
+ cloud: "aws"
7
+ region: "us-east-1"
8
+ # Cheapest VM on AWS
9
+ instance_type: "c7g.large"
10
+ # Ubuntu-22.04, ami image
11
+ machine_image: "ami-0a0c8eebcdd6dcbd0"
12
+ preemptible: false
13
+ # Add this label in the "runs-on" param in .github/workflows/<workflow-name>.yml
14
+ # So that this runner is created for running the workflow
15
+ labels:
16
+ - "cirun-aws-runner-graviton"
0 commit comments