mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
Merge branch 'add-gitlab-operator-build-base-image' into 'master'
Add build image for the GitLab Operator See merge request gitlab-org/gitlab-build-images!328
This commit is contained in:
commit
290ebc7aaf
2 changed files with 12 additions and 0 deletions
|
|
@ -120,6 +120,8 @@ gitlab-docs test: *test_build
|
||||||
gitlab-docs-lint test: *test_build
|
gitlab-docs-lint test: *test_build
|
||||||
# Used by go projects for linting https://gitlab.com/gitlab-org/gitlab/blob/master/doc/development/go_guide/index.md#automatic-linting
|
# Used by go projects for linting https://gitlab.com/gitlab-org/gitlab/blob/master/doc/development/go_guide/index.md#automatic-linting
|
||||||
golangci-lint-alpine test: *test_build
|
golangci-lint-alpine test: *test_build
|
||||||
|
# Used by gitlab-operator: https://gitlab.com/gitlab-org/gl-openshift/gitlab-operator
|
||||||
|
gitlab-operator-build-base test: *test_build
|
||||||
|
|
||||||
# Builds
|
# Builds
|
||||||
|
|
||||||
|
|
@ -186,6 +188,8 @@ gitlab-docs: *build_and_deploy
|
||||||
gitlab-docs-lint: *build_and_deploy
|
gitlab-docs-lint: *build_and_deploy
|
||||||
# Used by go projects for linting https://gitlab.com/gitlab-org/gitlab/blob/master/doc/development/go_guide/index.md#automatic-linting
|
# Used by go projects for linting https://gitlab.com/gitlab-org/gitlab/blob/master/doc/development/go_guide/index.md#automatic-linting
|
||||||
golangci-lint-alpine: *build_and_deploy
|
golangci-lint-alpine: *build_and_deploy
|
||||||
|
# Used by gitlab-operator: https://gitlab.com/gitlab-org/gl-openshift/gitlab-operator
|
||||||
|
gitlab-operator-build-base: *build_and_deploy
|
||||||
|
|
||||||
cache-google-chrome:
|
cache-google-chrome:
|
||||||
stage: automation
|
stage: automation
|
||||||
|
|
|
||||||
8
Dockerfile.gitlab-operator-build-base
Normal file
8
Dockerfile.gitlab-operator-build-base
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
FROM golang:1.14
|
||||||
|
LABEL maintainer="GitLab Distribution Team" \
|
||||||
|
description="Build base image for the GitLab Operator project."
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
RUN go get -u \
|
||||||
|
github.com/onsi/ginkgo/ginkgo \
|
||||||
|
golang.org/x/lint/golint
|
||||||
Loading…
Add table
Add a link
Reference in a new issue