Skip to content
GitLab
Next
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
GitLab Operator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
26
Issues
26
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
3
Merge Requests
3
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GitLab.org
OpenShift
GitLab Operator
Commits
1f3e3c25
Commit
1f3e3c25
authored
Sep 01, 2020
by
Edmund Ochieng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove duplicate gitlab ci job file
parent
153a7335
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
39 deletions
+0
-39
.gitlab-ci.yaml
.gitlab-ci.yaml
+0
-39
No files found.
.gitlab-ci.yaml
deleted
100644 → 0
View file @
153a7335
image
:
golang:1.14
stages
:
-
prepare
-
test
-
build
variables
:
GOPATH
:
${CI_PROJECT_DIR}/.go
before_script
:
-
mkdir -p .go
-
go get -u github.com/onsi/ginkgo/ginkgo
-
go get -u golang.org/x/lint/golint
.cache
:
cache
:
key
:
${CI_COMMIT_REF_SLUG}
paths
:
-
.go/
lint_code
:
stage
:
prepare
script
:
-
.go/bin/golint -set_exit_status $(go list ./... | grep -v /vendor/)
extends
:
.cache
unit_tests
:
stage
:
test
script
:
-
mkdir coverage
-
.go/bin/go test ./... -coverprofile cover.out
extends
:
.cache
build_all
:
stage
:
build
script
:
-
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo ./...
extends
:
.cache
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment