diff --git a/.cirun.yml b/.cirun.yml index 8ec249a..f612bc2 100644 --- a/.cirun.yml +++ b/.cirun.yml @@ -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/.yml + # So that this runner is created for running the workflow labels: - - "cirun-cpu-runner" \ No newline at end of file + - "cirun-aws-runner" \ No newline at end of file diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 48845ec..88e6ac0 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -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