From 358a6589c49d8099d082a8573d05054fadec1680 Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Wed, 1 Jan 2025 17:56:58 +0000
Subject: [PATCH] Remove channelsFileTransfer and broadcast from the
 integration tests

channelsFileTransfer never worked reliably and is not live on network

broadcast works fine (e.g., haven) but the test is flaky. We will know pretty quickly if it doesn't work because haven will stop working.
---
 .gitlab-ci.yml | 56 +++++++++++++++++++++++++-------------------------
 1 file changed, 28 insertions(+), 28 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f3c985f..8278950 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -188,20 +188,20 @@ channels:
       - results/
       - bin/
 
-channelsFileTransfer:
-  stage: tests
-  image: $DOCKER_IMAGE
-  script:
-    - mkdir -p ~/.elixxir
-    - echo $PWD
-    - rm -fr results
-    - ./run.sh --run channelsFileTransfer
-  artifacts:
-    when: always
-    expire_in: '1 day'
-    paths:
-      - results/
-      - bin/
+# channelsFileTransfer:
+#   stage: tests
+#   image: $DOCKER_IMAGE
+#   script:
+#     - mkdir -p ~/.elixxir
+#     - echo $PWD
+#     - rm -fr results
+#     - ./run.sh --run channelsFileTransfer
+#   artifacts:
+#     when: always
+#     expire_in: '1 day'
+#     paths:
+#       - results/
+#       - bin/
 
 fileTransfer:
   stage: tests
@@ -233,20 +233,20 @@ connect:
       - results/
       - bin/
 
-broadcast:
-  stage: tests
-  image: $DOCKER_IMAGE
-  script:
-    - mkdir -p ~/.elixxir
-    - echo $PWD
-    - rm -fr results
-    - ./run.sh --run broadcast
-  artifacts:
-    when: always
-    expire_in: '1 day'
-    paths:
-      - results/
-      - bin/
+# broadcast:
+#   stage: tests
+#   image: $DOCKER_IMAGE
+#   script:
+#     - mkdir -p ~/.elixxir
+#     - echo $PWD
+#     - rm -fr results
+#     - ./run.sh --run broadcast
+#   artifacts:
+#     when: always
+#     expire_in: '1 day'
+#     paths:
+#       - results/
+#       - bin/
 
 singleUse:
   stage: tests
-- 
GitLab