summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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
16'>116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
/div>
1
2
3
4
5
6
7
8
9
10
11
12