From d8c43d175c759c0bb1ab0fb34d556907961bb658 Mon Sep 17 00:00:00 2001
From: rlyu <rlyu@svi.edu.au>
Date: Tue, 14 Dec 2021 11:56:10 +1100
Subject: [PATCH] change artifacts path

---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 75a4739..b316010 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,7 +19,7 @@ buildStatic:
     - ls -l .
   artifacts:
     paths:
-      - sgcocaller
+      - ./sgcocaller
 
 testUbuntu:
   tags:
@@ -27,7 +27,7 @@ testUbuntu:
   image: ubuntu
   stage: testStatic
   script:
-    - sgcocaller -h
+    - ./sgcocaller -h
 
 testDebian:
   tags:
@@ -35,12 +35,12 @@ testDebian:
   image: debian
   stage: testStatic
   script:
-    - sgcocaller -h
+    - ./sgcocaller -h
 
 testRedHat:
   stage: testStatic
   script:
-    - sgcocaller -h
+    - ./sgcocaller -h
 
 
 ## shell executer    
@@ -55,7 +55,7 @@ testAlpine:
   image: alpine
   stage: testStatic
   script:
-  - sgcocaller -h
+  - ./sgcocaller -h
 
 
 
-- 
GitLab