[object Object]

← back to Exo

run on every commit on main, reuqire approval on other branches

ad695696a52964d31e73c1dee3cc5fd3c11b2e53 · 2024-08-22 14:58:28 +0100 · Alex Cheema

Files touched

Diff

commit ad695696a52964d31e73c1dee3cc5fd3c11b2e53
Author: Alex Cheema <alexcheema123@gmail.com>
Date:   Thu Aug 22 14:58:28 2024 +0100

    run on every commit on main, reuqire approval on other branches
---
 .circleci/config.yml | 31 ++++++++++++++++++++++++++++---
 1 file changed, 28 insertions(+), 3 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 20d8ded1..25e55826 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -221,18 +221,43 @@ workflows:
           filters:
             branches:
               ignore: main
+      - unit_test:
+          filters:
+            branches:
+              only: main
+      - discovery_integration_test:
+          filters:
+            branches:
+              only: main
+      - chatgpt_api_integration_test_mlx:
+          filters:
+            branches:
+              only: main
+      - test_macos_m1:
+          filters:
+            branches:
+              only: main
       - unit_test:
           requires:
             - hold_for_approval
+          filters:
+            branches:
+              ignore: main
       - discovery_integration_test:
           requires:
             - hold_for_approval
+          filters:
+            branches:
+              ignore: main
       - chatgpt_api_integration_test_mlx:
           requires:
             - hold_for_approval
+          filters:
+            branches:
+              ignore: main
       - test_macos_m1:
           requires:
             - hold_for_approval
-      # - chatgpt_api_integration_test_tinygrad:
-      #     requires:
-      #       - hold_for_approval
\ No newline at end of file
+          filters:
+            branches:
+              ignore: main
\ No newline at end of file

← 710e5a31 TODO for why use_fast=False is giving inconsistent behaviour  ·  back to Exo  ·  fix ci output streaming 7a02acdc →