diff options
author | Andinus <andinus@nand.sh> | 2020-03-18 23:09:36 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-03-18 23:16:11 +0530 |
commit | e96878ff2d111c91feaf4308240902795b911253 (patch) | |
tree | fbae895a8bbbc40e028b973e0ae23c13bb7e2d47 /build/ci/gitlab-ci.yml | |
parent | 052140fb3ccd4b386d8d98ba7355d676c1e0693d (diff) | |
download | cetus-e96878ff2d111c91feaf4308240902795b911253.tar.gz |
Fix gitlab ci yaml syntax
Diffstat (limited to 'build/ci/gitlab-ci.yml')
-rw-r--r-- | build/ci/gitlab-ci.yml | 9 |
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 |