thenatlog 11 months ago
parent
commit
9d486fe323
1 changed files with 36 additions and 15 deletions
  1. 36 15
      .circleci/config.yml

+ 36 - 15
.circleci/config.yml

@@ -1,23 +1,44 @@
-version: 2.1
+# 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
 
-workflows:
-  benchmark:
-    jobs:
-      - hardware-runner-e0
+
+version: 2.1
 
 jobs:
-  runner:
+  hello-world:
     machine: true
-    resource_class: exo/hardware
+    resource_class: exo/hardware  # Replace with your actual namespace/resource-class
     steps:
       - checkout
       - run:
-          name: benchmark
+          name: Hello from macOS Runner
           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
+            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