You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.cirun.yml 561 B

12345678910111213141516
  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"