Skip to content

Commit

Permalink
Updating Allure Framework native to 2.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fescobar committed Mar 12, 2024
1 parent 2e62272 commit 7f2cf3d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
DOCKER_IMAGE: frankescobar/allure-docker-service
ALLURE_RELEASE: 2.21.0
ALLURE_RELEASE: 2.27.0
QEMU_VERSION: v4.0.0
DOCKER_CLI_EXPERIMENTAL: enabled

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ The following table shows the provided Manifest Lists.

| **Tag** | **allure-docker-service Base Image** |
|----------------------------------------|---------------------------------------------------|
| latest, 2.21.0 | frankescobar/allure-docker-service:2.21.0-amd64 |
| | frankescobar/allure-docker-service:2.21.0-arm32v7 |
| | frankescobar/allure-docker-service:2.21.0-arm64v8 |
| latest, 2.27.0 | frankescobar/allure-docker-service:2.27.0-amd64 |
| | frankescobar/allure-docker-service:2.27.0-arm32v7 |
| | frankescobar/allure-docker-service:2.27.0-arm64v8 |

## USAGE
### Generate Allure Results
Expand Down Expand Up @@ -722,7 +722,7 @@ You can switch the version container using `frankescobar/allure-docker-service:$
Docker Compose example:
```sh
allure:
image: "frankescobar/allure-docker-service:2.21.0"
image: "frankescobar/allure-docker-service:2.27.0"
```
or using latest version:
Expand Down Expand Up @@ -1395,7 +1395,7 @@ docker-compose -f docker-compose-dev.yml up --build
```
### Build image
```sh
docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.21.0 .
docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.27.0 .
```
### Run container
```sh
Expand Down Expand Up @@ -1446,5 +1446,5 @@ docker run -d -p 5050:5050 frankescobar/allure-docker-service
```
### Download specific tagged image registered (Example)
```sh
docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.21.0
docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.27.0
```
1 change: 0 additions & 1 deletion allure-docker-scripts/generateAllureReport.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ EXECUTION_TYPE=$6
PROJECT_REPORTS=$STATIC_CONTENT_PROJECTS/$PROJECT_ID/reports
if [ "$(ls $PROJECT_REPORTS | wc -l)" != "0" ]; then
if [ -e "$PROJECT_REPORTS/latest" ]; then
echo "LATEST EJECUTA"
LAST_REPORT_PATH_DIRECTORY=$(ls -td $PROJECT_REPORTS/* | grep -wv $PROJECT_REPORTS/latest | grep -v $EMAILABLE_REPORT_FILE_NAME | head -1)
else
LAST_REPORT_PATH_DIRECTORY=$(ls -td $PROJECT_REPORTS/* | grep -v $EMAILABLE_REPORT_FILE_NAME | head -1)
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
context: ../allure-docker-service
dockerfile: docker-custom/Dockerfile.bionic-custom
args:
ALLURE_RELEASE: "2.21.0"
ALLURE_RELEASE: "2.27.0"
environment:
DEV_MODE: 0
CHECK_RESULTS_EVERY_SECONDS: NONE
Expand Down
4 changes: 2 additions & 2 deletions docker-custom/Dockerfile.bionic-custom
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG ARCH=amd64
ARG JDK=adoptopenjdk:11-jre-openj9-bionic
ARG BUILD_DATE
ARG BUILD_VERSION=2.21.0-custom
ARG BUILD_VERSION=2.27.0-custom
ARG BUILD_REF=na
ARG ALLURE_RELEASE=2.21.0
ARG ALLURE_RELEASE=2.27.0
ARG ALLURE_REPO=https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline
ARG UID=1000
ARG GID=1000
Expand Down

0 comments on commit 7f2cf3d

Please sign in to comment.