thenatlog 11 months ago
parent
commit
e29aaae551
1 changed files with 7 additions and 40 deletions
  1. 7 40
      .circleci/config.yml

+ 7 - 40
.circleci/config.yml

@@ -1,44 +1,11 @@
-# version: 2.1
-
-# workflows:
-#   benchmark:
-#     jobs:
-#       - hardware-runner-e0
-
-# jobs:
-#   runner:
-#     machine: true
-#     resource_class: exo/hardware
-#     steps:
-#       - checkout
-#       - run:
-#           name: benchmark
-#           command: |
-#             python3 -m venv venv
-#             . venv/bin/activate
-#             pip install aiohttp
-#             python3 $HOME/Library/com.circleci.runner/workdir/.circleci/bench.py
-      # - store_artifacts:
-      #     path: artifacts/benchmark.json
-      #     destination: benchmark.json
-
-
 version: 2.1
-
+workflows:
+  testing:
+    jobs:
+      - runner-test
 jobs:
-  hello-world:
+  runner-test:
     machine: true
-    resource_class: exo/hardware  # Replace with your actual namespace/resource-class
+    resource_class: exo/hardware
     steps:
-      - checkout
-      - run:
-          name: Hello from macOS Runner
-          command: |
-            echo "Hello World from macOS Self-hosted Runner!"
-            sw_vers  # Print macOS version information
-            echo "Current working directory: $(pwd)"
-
-workflows:
-  hello-world-workflow:
-    jobs:
-      - hello-world
+      - run: echo "Hi I'm on Runners!"