Skip to content

Commit

Permalink
change name of runner
Browse files Browse the repository at this point in the history
  • Loading branch information
khintz committed May 23, 2024
1 parent 15d6f44 commit 57d189f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .cirun.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
runners:
- name: "cpu-runner"
- name: "aws-runner"
# Cloud Provider: AWS
cloud: "aws"
gpu: "nvidia-tesla-t4"
instance_type: "t3.nano"
# Cheapest VM on AWS
instance_type: "t2.nano"
# Ubuntu-20.4, ami image
machine_image: "ami-06fd8a495a537da8b"
preemptible: true
region: "eu-central-1"
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:
- "cirun-cpu-runner"
- "cirun-aws-runner"
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on: [push, pull_request]

jobs:
tests:
runs-on: "cirun-cpu-runner--${{ github.run_id }}"
runs-on: "cirun-aws-runner--${{ github.run_id }}"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 57d189f

Please sign in to comment.