Skip to content

Commit

Permalink
feat: add junit-summary.xsl to the image
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh committed Mar 13, 2023
1 parent 8036f06 commit 8b1ac58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.0.1] - 2023-03-13
### Added
- Added `junit-summary.xsl` to the `etc` directory inside the docker image

## [1.0.0] - 2023-03-13
### Added
- Initial release
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ ARG SAXON_HE_REPOSITORY=pl-strflt/Saxon-HE
ARG SAXON_HE_SHA=392d705f7d603b0cfdd4c95fddd3c0a80590a21b

ARG ANT_REPOSITORY=pl-strflt/ant
ARG ANT_SHA=06666b51cd07442d1f20547853f03a28f61207fd
ARG ANT_SHA=b99f737b6302e5561b30db90c2d3a2541c4610f2

RUN apt-get update && apt-get install -y unzip jq

RUN curl -L --max-redirs 5 --retry 5 --no-progress-meter --output "SaxonHE11-5J.zip" "https://raw.githubusercontent.com/${SAXON_HE_REPOSITORY}/${SAXON_HE_SHA}/11/Java/SaxonHE11-5J.zip" && \
unzip "SaxonHE11-5J.zip" -d "/opt/SaxonHE11-5J" && \
rm "SaxonHE11-5J.zip"
RUN for file in gotest.xsl junit-frames-saxon.xsl junit-noframes-saxon.xsl; do \
RUN for file in gotest.xsl junit-frames-saxon.xsl junit-noframes-saxon.xsl junit-summary.xsl; do \
curl -L --max-redirs 5 --retry 5 --no-progress-meter --output "/etc/${file}" "https://raw.githubusercontent.com/${ANT_REPOSITORY}/${ANT_SHA}/src/etc/${file}"; \
done

Expand Down

0 comments on commit 8b1ac58

Please sign in to comment.