Skip to content
Snippets Groups Projects
Commit 09dbd7c6 authored by Nick Thomas's avatar Nick Thomas Committed by Marin Jankovski
Browse files

Package gitlab-elasticsearch-indexer for GitLab EE

parent 73a0fc9c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -28,6 +28,8 @@ redis-exporter:
remote: "git@dev.gitlab.org:omnibus-mirror/redis_exporter.git"
gitaly:
remote: 'git@dev.gitlab.org:gitlab/gitaly'
gitlab-elasticsearch-indexer:
remote: 'git@dev.gitlab.org:gitlab/gitlab-elasticsearch-indexer.git'
logrotate:
remote: "git@dev.gitlab.org:omnibus-mirror/logrotate.git"
 
Loading
Loading
@@ -65,5 +67,7 @@ logrotate:
#remote: "https://gitlab.com/omnibus-mirror/redis_exporter.git"
#gitaly:
#remote: 'https://gitlab.com/gitlab-org/gitaly'
#gitlab-elasticsearch-indexer:
#remote: 'https://gitlab.com:gitlab-org/gitlab-elasticsearch-indexer.git'
#logrotate:
#remote: "https://gitlab.com/omnibus-mirror/logrotate.git"
Loading
Loading
@@ -622,7 +622,7 @@ SLES 12:
- tags@gitlab/omnibus-gitlab
allow_failure: true
tags:
- SLES12
- sles-12-0.0.1
 
Ubuntu 12.04 branch:
image: "dev.gitlab.org:5005/cookbooks/gitlab-omnibus-builder:ubuntu_12.04-0.0.3"
Loading
Loading
@@ -709,7 +709,7 @@ SLES 12 branch:
- branches@gitlab/omnibus-gitlab
allow_failure: true
tags:
- SLES12
- sles-12-0.0.1
 
Raspberry Pi 2 Jessie branch:
image: "dev.gitlab.org:5005/cookbooks/gitlab-omnibus-builder:rpi_8-0.0.3"
Loading
Loading
#
# Copyright:: Copyright (c) 2017 GitLab Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require "#{Omnibus::Config.project_root}/lib/gitlab/version"
version = Gitlab::Version.new('gitlab-elasticsearch-indexer')
name 'gitlab-elasticsearch-indexer'
default_version 'master'
license 'MIT'
license_file 'LICENSE'
dependency 'libicu'
source git: version.remote
build do
env = with_standard_compiler_flags(with_embedded_path)
env['GOPATH'] = "#{Omnibus::Config.source_dir}/gitlab-elasticsearch-indexer"
make "install PREFIX=#{install_dir}/embedded", env: env
end
Loading
Loading
@@ -49,7 +49,10 @@ dependency 'registry'
dependency 'gitlab-pages'
dependency 'unzip'
 
dependency 'mysql-client' if EE
if EE
dependency 'mysql-client'
dependency 'gitlab-elasticsearch-indexer'
end
 
build do
env = with_standard_compiler_flags(with_embedded_path)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment