Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Leitzen <pleitzen@gitlab.com>2019-04-26 20:31:56 +0300
committerClement Ho <clemmakesapps@gmail.com>2019-04-26 20:31:56 +0300
commitfb743d6158c93b8d689ae7f5e70ac1fe5dcf87cd (patch)
treee515ee6eda283fc3e3d573d729aa61f2af6c920a
parent99a6932e66dd1009c32aff54598f5f55fd5dbd32 (diff)
CI: Fix upload of screenshots in gitlab:ui:visual
Before this commit uploading of screenshots failed with WARNING: tests/__image_snapshots__/: no matching files ERROR: No files to upload ERROR: Job failed: exit code 1 After this commit it works again Uploading artifacts... gitlab-ui/tests/__image_snapshots__/: found 90 matching files Uploading artifacts to coordinator... ok
-rw-r--r--.gitlab/ci/frontend.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci/frontend.gitlab-ci.yml b/.gitlab/ci/frontend.gitlab-ci.yml
index bfefd42c52d..935b494b6f7 100644
--- a/.gitlab/ci/frontend.gitlab-ci.yml
+++ b/.gitlab/ci/frontend.gitlab-ci.yml
@@ -107,7 +107,7 @@ gitlab:ui:visual:
- $CI_COMMIT_MESSAGE =~ /\[skip visual\]/i
artifacts:
paths:
- - tests/__image_snapshots__/
+ - gitlab-ui/tests/__image_snapshots__/
when: always
karma: