summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/build
Commit message (Collapse)AuthorAgeFilesLines
* Minor improvements in build arfifacts browserci/view-build-artifactsGrzegorz Bizon2016-01-142-7/+14
| | | | | Added also a `Gitlab::Ci::Build::Artifacts::Metadata::ParserError` exception class.
* Use Hash to store paths and entries metadata in artifacts browserGrzegorz Bizon2016-01-142-18/+11
|
* Improve readability of artifacts `Metadata` related codeGrzegorz Bizon2016-01-142-34/+24
|
* Improve readability of artifacts browser `Entry` related codeGrzegorz Bizon2016-01-142-25/+27
|
* Simplify encoding related implementation in artifacts metadataGrzegorz Bizon2016-01-141-6/+5
|
* Make encoding of paths returned by metadata consistent (UTF-8)Grzegorz Bizon2016-01-141-3/+3
|
* Improvements, readability for artifacts browserGrzegorz Bizon2016-01-141-5/+7
|
* Support only valid UTF-8 paths in build artifacts browserGrzegorz Bizon2016-01-142-5/+13
|
* Improve invalid build artifacts metadata path matcherGrzegorz Bizon2016-01-141-5/+2
|
* Render only valid paths in artifacts metadataGrzegorz Bizon2016-01-142-7/+15
| | | | | In this version we will support only relative paths in artifacts metadata. Support for absolute paths will be introduced later.
* Simplify implementation of build artifacts browser (refactoring)Grzegorz Bizon2016-01-142-35/+153
|
* Change format of artifacts metadata from text to binary 0.0.1Grzegorz Bizon2016-01-141-10/+58
| | | | | | | | | | | | | | | | | | | This changes the format of metadata to handle paths, that may contain whitespace characters, new line characters and non-UTF-8 characters. Now those paths along with metadata in JSON format are stored as length-prefixed strings (uint32 prefix). Metadata file has a custom format: 1. First string field is metadata version field (string) 2. Second string field is metadata errors field (JSON strong) 3. All subsequent fields is pair of path (string) and path metadata in JSON format. Path's metadata contains all fields that where possible to extract from ZIP archive like date of modification, CRC, compressed size, uncompressed size and comment.
* Show file size in artifacts browser using metadataGrzegorz Bizon2016-01-141-3/+2
|
* Render 404 when artifacts path is invalidGrzegorz Bizon2016-01-141-1/+1
|
* Extract artifacts metadata implementation to separate classGrzegorz Bizon2016-01-141-0/+57