summary refs log tree commit diff stats
path: root/build
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-24 17:41:57 +0530
committerAndinus <andinus@nand.sh>2020-03-24 17:41:57 +0530
commit813b37d0cf7e6e371418feac56d40f48176105ba (patch)
tree2e4efd2224ff84700cbf354ea0ff75775d79a8a0 /build
parent532c060fd97c31c28f20f6f823472247edc0c30f (diff)
downloadcetus-813b37d0cf7e6e371418feac56d40f48176105ba.tar.gz
Reinitialize project and change module url
Diffstat (limited to 'build')
-rw-r--r--build/ci/gitlab-ci.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/build/ci/gitlab-ci.yml b/build/ci/gitlab-ci.yml
deleted file mode 100644
index 2a140ea..0000000
--- a/build/ci/gitlab-ci.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-image: golang:1.13
-
-variables:
-  REPO_NAME: framagit.org/andinus/cetus
-
-before_script:
-  - mkdir -p $GOPATH/src/$REPO_NAME
-  - cp -fr $CI_PROJECT_DIR/* $GOPATH/src/$REPO_NAME/
-  - cd $GOPATH/src/$REPO_NAME
-
-stages:
-  - build
-  - deploy
-
-compile:
-    stage: build
-    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
-      - GOOS=darwin GOARCH=amd64 go build -o $CI_PROJECT_DIR/cetus-darwin-amd64
-    artifacts:
-      paths:
-        - cetus-openbsd-amd64
-        - cetus-linux-amd64
-        - cetus-darwin-amd64