Skip to content

Commit

Permalink
gcp actions runner
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepsinn authored Jan 31, 2023
1 parent 2f152da commit 7bb4158
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .cirun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Self-Hosted Github Action Runners on GCP via Cirun.io
# Reference: https://docs.cirun.io/Reference/yml.html
runners:
- name: "gpu-runner"
# Cloud Provider: GCP
cloud: "gcp"
# Cheapest GPU on GCP
# gpu: "nvidia-tesla-t4"
# Cheapest VM on GCP, with GPU attachable
instance_type: "n1-standard-1"
# Ubuntu-20.4, can be seen from "gcloud compute images list"
machine_image: "ubuntu-2004-focal-v20221018"
preemptible: false
# Add this label in the "runs-on" param in .github/workflows/<workflow-name>.yml
# So that this runner is created for running the workflow
labels:
- "gcp-runner"

0 comments on commit 7bb4158

Please sign in to comment.