Merge branch 'qa/mk-fix-artifact-creation' into 'master'
Fix artifact creation in CI/CD QA spec See merge request gitlab-org/gitlab-ce!17078
This commit is contained in:
commit
de67c59720
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ module QA
|
|||
tags:
|
||||
- qa
|
||||
- test
|
||||
script: echo "CONTENTS" > my-artifacts/artifact.txt
|
||||
script: mkdir my-artifacts; echo "CONTENTS" > my-artifacts/artifact.txt
|
||||
artifacts:
|
||||
paths:
|
||||
- my-artifacts/
|
||||
|
@ -95,7 +95,7 @@ module QA
|
|||
expect(pipeline).to have_build('test-success', status: :success)
|
||||
expect(pipeline).to have_build('test-failure', status: :failed)
|
||||
expect(pipeline).to have_build('test-tags', status: :pending)
|
||||
expect(pipeline).to have_build('test-artifacts', status: :failed)
|
||||
expect(pipeline).to have_build('test-artifacts', status: :success)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue