summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-18 23:09:36 +0530
committerAndinus <andinus@nand.sh>2020-03-18 23:16:11 +0530
commite96878ff2d111c91feaf4308240902795b911253 (patch)
treefbae895a8bbbc40e028b973e0ae23c13bb7e2d47
parent052140fb3ccd4b386d8d98ba7355d676c1e0693d (diff)
downloadcetus-e96878ff2d111c91feaf4308240902795b911253.tar.gz
Fix gitlab ci yaml syntax
-rw-r--r--build/ci/gitlab-ci.yml9
1 files changed, 1 insertions, 8 deletions
diff --git a/build/ci/gitlab-ci.yml b/build/ci/gitlab-ci.yml
index 967029c..f6d776e 100644
--- a/build/ci/gitlab-ci.yml
+++ b/build/ci/gitlab-ci.yml
@@ -14,18 +14,11 @@ stages:
 
 compile:
     stage: build
-    # only:
-    #   refs:
-    #     - web
-    #     - tags
-    #     - master
-    #     - schedules
-    #     - merge_requests
     script:
       - cd $GOPATH/src/$REPO_NAME/cmd/cetus
       - GOOS=openbsd GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-openbsd-amd64
       - GOOS=linux GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-linux-amd64
-      artifacts:
+    artifacts:
       paths:
         - cetus-openbsd-amd64
         - cetus-linux-amd64