summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@inventati.org>2020-03-14 23:37:51 +0530
committerAndinus <andinus@inventati.org>2020-03-14 23:37:51 +0530
commit3d25dff251cde9fad0582fd31e2ad4b95bec0288 (patch)
treea4a894613bd3946c05c8efd5930fa944a028e8c1
parentd7f130bafd264f109178b995df179372ab4cf229 (diff)
downloadcetus-3d25dff251cde9fad0582fd31e2ad4b95bec0288.tar.gz
Build linux image with gitlab-ci
-rw-r--r--build/ci/gitlab-ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/ci/gitlab-ci.yml b/build/ci/gitlab-ci.yml
index a8ec0f4..da75beb 100644
--- a/build/ci/gitlab-ci.yml
+++ b/build/ci/gitlab-ci.yml
@@ -18,6 +18,8 @@ compile:
       - find *
       - cd $GOPATH/src/$REPO_NAME/cmd/cetus-nasa
       - GOOS=openbsd GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-nasa-openbsd-amd64
+      - GOOS=linux GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-nasa-linux-amd64
     artifacts:
       paths:
         - cetus-nasa-openbsd-amd64
+        - cetus-nasa-linux-amd64
a> 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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201