Build artifacts added twice to artifacts.tgz
Just tried artifacts feature and it added the contents of folder listed in artifacts
paths
option twice to the artifacts.tgz
gitlab-runner version 0.7.1 (ee7a001)
My .gitlab-ci.yml
before_script:
- npm install -g gulp bower
variables:
# Timezone will be used both for system and php date.timezone php.ini value
TIMEZONE: "Europe/Moscow"
php-5.6:
image: tetraweb/php:5.6
script:
- npm install && bower install --allow-root && gulp build
artifacts:
paths:
- build/
After downloading artifacts.tgz
$ tar -ztvf ~/tmp/artifacts.tgz
drwxr-xr-x root/root 0 2015-11-25 11:32 build/
-rw-r--r-- root/root 7146 2015-11-25 11:32 build/index.html
drwxr-xr-x root/root 0 2015-11-25 11:32 build/assets/
-rw-r--r-- root/root 6634 2015-11-25 11:32 build/assets/main-d8d38bf70f.css
-rw-r--r-- root/root 0 2015-11-25 11:32 build/assets/app-d41d8cd98f.js
-rw-r--r-- root/root 128 2015-11-25 11:32 build/about.html
-rw-r--r-- root/root 128 2015-11-25 11:32 build/about.html
drwxr-xr-x root/root 0 2015-11-25 11:32 build/assets/
-rw-r--r-- root/root 6634 2015-11-25 11:32 build/assets/main-d8d38bf70f.css
-rw-r--r-- root/root 0 2015-11-25 11:32 build/assets/app-d41d8cd98f.js
-rw-r--r-- root/root 0 2015-11-25 11:32 build/assets/app-d41d8cd98f.js
-rw-r--r-- root/root 6634 2015-11-25 11:32 build/assets/main-d8d38bf70f.css
-rw-r--r-- root/root 7146 2015-11-25 11:32 build/index.html
Due to the nature of filesystem I'm sure that there are no files with the same names in the folder after build