Commit de67c597 authored by Grzegorz Bizon's avatar Grzegorz Bizon

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
parents 97bd016f 68a2ddd1
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment