Hello,
We are using CircleCI for a class and we ran out of credits for the free tier so we wanted to setup a self hosted runner.
We are using an AWS EC2 t4.medium ARM instance, and followed the machine install steps.
The runner appears as available in the ‘self hosted runners’ tab of the circleci web app.
We are trying to test the runner using the following configuration
version: 2.1
workflows:
testing:
jobs:
- runner-test
jobs:
runner-test:
machine: true
resource_class: org/class
steps:
- run: echo "Testing self-hosted runner!"
The problem is that, when running the job, circleci returns the out of credits error, and it seems that the task is never loaded to the self hosted runner.
Do we need available credits to use the self hosted runner?
Might we be missing something?
Any help is appreciated, thank you.