[poppler] .gitlab-ci.yml

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Aug 21 18:32:21 UTC 2018


 .gitlab-ci.yml |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b8082c67943ea7ef7c115b86cffb0785da32d227
Author: Adam Reichold <adam.reichold at t-online.de>
Date:   Tue Aug 21 20:21:36 2018 +0200

    Since the CI directory is cached, we need to make sure we create it if necessary instead of failing.

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ac585da9..b1a1302e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,7 +16,7 @@ variables:
 build:
   stage: build
   script:
-    - mkdir build && cd build
+    - mkdir -p build && cd build
     - curl https://gitlab.freedesktop.org/poppler/test/-/archive/master/test-master.tar.gz | tar xz
     - cmake -G Ninja -DTESTDATADIR=$PWD/test-master ..
     - ninja


More information about the poppler mailing list