-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |