Skip to content
Snippets Groups Projects
Commit a4d28134 authored by Marin Jankovski's avatar Marin Jankovski Committed by DJ Mountney
Browse files

Add SLES 12 EE package

parent c7e46399
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -467,6 +467,20 @@ OpenSUSE 42.1:
- cache
- gems
<<: *tag_build
SLES 12:
stage: extra
script:
- echo "$DEV_GITLAB_SSH_KEY" > ~/.ssh/id_rsa
- ssh-keyscan -H dev.gitlab.org > ~/.ssh/known_hosts
- echo -e "[default]\naws_access_key_id = $AWS_ACCESS_KEY_ID \naws_secret_access_key = $AWS_SECRET_ACCESS_KEY" > ~/.aws/config
- export PACKAGECLOUD_REPO=$(bundle exec rake repository:target)
- echo $PACKAGECLOUD_REPO
- if ./support/is_gitlab_ee.sh; then make do_release; else exit 0;fi
only:
- tags@gitlab/omnibus-gitlab
allow_failure: true
tags:
- SLES12
 
Ubuntu 12.04 branch:
image: "dev.gitlab.org:5005/cookbooks/gitlab-omnibus-builder:precise"
Loading
Loading
@@ -540,6 +554,20 @@ OpenSUSE 42.1 branch:
- cache
- gems
<<: *branch_build
SLES 12 branch:
stage: extra
script:
- echo "$DEV_GITLAB_SSH_KEY" > ~/.ssh/id_rsa
- ssh-keyscan -H dev.gitlab.org > ~/.ssh/known_hosts
- echo -e "[default]\naws_access_key_id = $AWS_ACCESS_KEY_ID \naws_secret_access_key = $AWS_SECRET_ACCESS_KEY" > ~/.aws/config
- export PACKAGECLOUD_REPO=$(bundle exec rake repository:target)
- echo $PACKAGECLOUD_REPO
- if ./support/is_gitlab_ee.sh; then make test; else exit 0;fi
only:
- branches@gitlab/omnibus-gitlab
allow_failure: true
tags:
- SLES12
 
Raspberry Pi 2 Jessie branch:
image: "dev.gitlab.org:5005/cookbooks/gitlab-omnibus-builder:rpi_jessie"
Loading
Loading
Loading
Loading
@@ -41,6 +41,14 @@ def repo_string
when 'opensuse', 'opensuseleap'
os = 'opensuse'
version = ohai['platform_version']
when 'suse'
os = 'sles'
case ohai['platform_version']
when /^12\./
version = '12.2'
when /^11\./
version = '11.4'
end
end
 
if os == :unknown or version == :unknown
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