From d43d9e2385f4fb5b062bb2339eaf69623103494b Mon Sep 17 00:00:00 2001
From: Jason Hiser <jdhiser@gmail.com>
Date: Sun, 8 Jan 2023 23:05:15 +0000
Subject: [PATCH] Update .gitlab-ci.yml file.  Correct syntax

---
 .gitlab-ci.yml | 68 +++++++++++---------------------------------------
 1 file changed, 15 insertions(+), 53 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a948631c0..e4b866243 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -26,6 +26,21 @@ stages:
     - ./cicd_testing/builtin-xforms.sh
     - ./cicd_testing/elfdep.sh
 
+  test-arm32: 
+    needs: []
+    stage: clean
+    script:
+      - ./cicd_testing/do-clean.sh 
+      - ./cicd_testing/do-build.sh
+
+test-arm64: 
+    needs: []
+    stage: clean
+    script:
+      - ./cicd_testing/do-clean.sh 
+      - ./cicd_testing/do-build.sh
+      - ./cicd_testing/builtin-xforms.sh
+      
 # per os items
 test-ubuntu18:
   <<: *test
@@ -37,16 +52,6 @@ test-coss9:
   tags:
     - coss9
 
-test-arm32:
-  <<: *test
-  tags:
-    - arm32
-
-test-arm64:
-  <<: *test
-  tags:
-    - arm64
-
 test-ubuntu20:
   <<: *test
   tags:
@@ -125,49 +130,6 @@ test-bins-arm64:
             - arm64
 
 
-
-
-# doesn't work yet
-#builtin-xforms-arm32:
-#  <<: *builtin-xforms
-#  tags:
-#    - arm32
-
-builtin-xforms-arm64:
-  <<: *builtin-xforms
-  tags:
-    - arm64
-
-
-#
-# elfdep test
-#
-
-# template
-.elfdep: &elfdep
-  stage: test
-  script:
-
-elfdep-ubuntu18:
-  <<: *elfdep
-  tags:
-    - ubuntu18
-    
-elfdep-coss9:
-  <<: *elfdep
-  tags:
-    - coss9
-elfdep-ubuntu20:
-  <<: *elfdep
-  tags:
-    - ubuntu20
-
-elfdep-ubuntu22:
-  <<: *elfdep
-  tags:
-    - ubuntu22
-
-
 #
 # deploy a docker image
 #
-- 
GitLab