From 256e122606b4049f9146783bd8afacc71d166c9a Mon Sep 17 00:00:00 2001 From: rlyu <rlyu@svi.edu.au> Date: Tue, 14 Dec 2021 11:38:01 +1100 Subject: [PATCH] update CI --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0153e2..75a4739 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,11 +15,11 @@ buildStatic: image: svirlyu/sscocaller_nsb stage: buildStatic script: - - /usr/local/bin/nsb -s ./src/sgcocaller.nim -n sgcocaller.nimble -o . -- --d:release --threads:on - - ls -l ./src + - /usr/local/bin/nsb -s sgcocaller.nim -n sgcocaller.nimble -o . -- --d:release --threads:on + - ls -l . artifacts: paths: - - ./src/sgcocaller + - sgcocaller testUbuntu: tags: @@ -27,7 +27,7 @@ testUbuntu: image: ubuntu stage: testStatic script: - - ./src/sgcocaller -h + - sgcocaller -h testDebian: tags: @@ -35,12 +35,12 @@ testDebian: image: debian stage: testStatic script: - - ./src/sgcocaller -h + - sgcocaller -h testRedHat: stage: testStatic script: - - ./src/sgcocaller -h + - sgcocaller -h ## shell executer @@ -55,7 +55,7 @@ testAlpine: image: alpine stage: testStatic script: - - ./src/sgcocaller -h + - sgcocaller -h -- GitLab