Last active
June 24, 2021 15:54
-
-
Save ryanpedersen42/5c707a8ab0478175c6eb1b0f1a3c4093 to your computer and use it in GitHub Desktop.
Run runner and cloud side-by-side
This file contains hidden or 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
version: 2.1 | |
workflows: | |
testing: | |
jobs: | |
- runner_mac | |
- runner_linux | |
- cloud_docker | |
jobs: | |
runner_linux: | |
machine: true | |
resource_class: ryanpedersen/linux-runner | |
steps: | |
- run: echo "Hi I'm on Runners!!" | |
runner_mac: | |
machine: true | |
resource_class: ryanpedersen/mac-runner | |
steps: | |
- run: echo "Hi I'm on Runners!!" | |
cloud_docker: | |
docker: | |
- image: cimg/node:stable | |
steps: | |
- run: echo "Hi I'm on CircleCI-hosted runner" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment