Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
95178fa1
Commit
95178fa1
authored
Mar 12, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
b908ba0b
bc557687
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
qa/qa/specs/features/browser_ui/1_manage/project/add_project_member_spec.rb
...es/browser_ui/1_manage/project/add_project_member_spec.rb
+2
-1
scripts/build_assets_image
scripts/build_assets_image
+6
-0
scripts/trigger-build
scripts/trigger-build
+1
-1
No files found.
qa/qa/specs/features/browser_ui/1_manage/project/add_project_member_spec.rb
View file @
95178fa1
# frozen_string_literal: true
module
QA
context
'Manage'
do
# Failure issue: https://gitlab.com/gitlab-org/quality/staging/issues/45
context
'Manage'
,
:quarantine
do
describe
'Add project member'
do
it
'user adds project member'
do
Runtime
::
Browser
.
visit
(
:gitlab
,
Page
::
Main
::
Login
)
...
...
scripts/build_assets_image
View file @
95178fa1
...
...
@@ -27,3 +27,9 @@ docker login -u gitlab-ci-token -p ${CI_JOB_TOKEN} ${CI_REGISTRY}
docker push
${
ASSETS_IMAGE_PATH
}
:
${
CI_COMMIT_REF_SLUG
}
docker push
${
ASSETS_IMAGE_PATH
}
:
${
CI_COMMIT_SHA
}
# Also tag the image with GitLab version, if running on a tag pipeline, so
# other projects can simply use that instead of computing the slug.
if
[
-n
"
$CI_COMMIT_TAG
"
]
;
then
docker tag
${
ASSETS_IMAGE_PATH
}
:
${
CI_COMMIT_REF_SLUG
}
${
ASSETS_IMAGE_PATH
}
:
${
CI_COMMIT_REF_NAME
}
docker push
${
ASSETS_IMAGE_PATH
}
:
${
CI_COMMIT_REF_NAME
}
fi
scripts/trigger-build
View file @
95178fa1
...
...
@@ -141,7 +141,7 @@ module Trigger
"GITLAB_
#{
edition
}
_VERSION"
=>
ENV
[
'CI_COMMIT_REF_NAME'
],
"GITLAB_VERSION"
=>
ENV
[
'CI_COMMIT_REF_NAME'
],
"GITLAB_TAG"
=>
ENV
[
'CI_COMMIT_TAG'
],
"GITLAB_ASSETS_TAG"
=>
ENV
[
'CI_COMMIT_REF_SLUG'
],
"GITLAB_ASSETS_TAG"
=>
ENV
[
'CI_COMMIT_
TAG'
]
?
ENV
[
'CI_COMMIT_REF_NAME'
]
:
ENV
[
'CI_COMMIT_
REF_SLUG'
],
"
#{
edition
}
_PIPELINE"
=>
'true'
}
end
...
...
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