Skip to content

Commit

Permalink
Merge pull request #18 from hellofresh/bump-jmeter
Browse files Browse the repository at this point in the history
Prepare JMeter 5.4.1 release
  • Loading branch information
s4nji authored May 27, 2021
2 parents 3885b57 + 138a606 commit 35525e9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build docker image release
runs-on: ubuntu-latest
env:
JMETER_VERSION: "5.0"
JMETER_VERSION: "5.4.1"
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -33,7 +33,7 @@ jobs:
uses: docker/build-push-action@v2
with:
build-args: |
VERSION=${{env.JMETER_VERSION}}
JMETER_VERSION=${{env.JMETER_VERSION}}
tags: |
hellofresh/kangal-jmeter:${{env.JMETER_VERSION}}
hellofresh/kangal-jmeter:latest
Expand All @@ -45,7 +45,7 @@ jobs:
uses: docker/build-push-action@v2
with:
build-args: |
VERSION=${{env.JMETER_VERSION}}
JMETER_VERSION=${{env.JMETER_VERSION}}
tags: |
hellofresh/kangal-jmeter-master:${{env.JMETER_VERSION}}
hellofresh/kangal-jmeter-master:latest
Expand All @@ -57,7 +57,7 @@ jobs:
uses: docker/build-push-action@v2
with:
build-args: |
VERSION=${{env.JMETER_VERSION}}
JMETER_VERSION=${{env.JMETER_VERSION}}
tags: |
hellofresh/kangal-jmeter-worker:${{env.JMETER_VERSION}}
hellofresh/kangal-jmeter-worker:latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
env:
JMETER_VERSION: "5.0"
JMETER_VERSION: "5.4.1"
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
uses: docker/build-push-action@v2
with:
build-args: |
VERSION=${{env.JMETER_VERSION}}
JMETER_VERSION=${{env.JMETER_VERSION}}
tags: hellofresh/kangal-jmeter:${{env.JMETER_VERSION}}
context: docker/jmeter-base
file: docker/jmeter-base/Dockerfile
Expand All @@ -66,7 +66,7 @@ jobs:
file: docker/jmeter-master/Dockerfile
push: false
build-args: |
VERSION=${{env.JMETER_VERSION}}
JMETER_VERSION=${{env.JMETER_VERSION}}
- name: Build Docker worker image
uses: docker/build-push-action@v2
Expand All @@ -76,7 +76,7 @@ jobs:
file: docker/jmeter-worker/Dockerfile
push: false
build-args: |
VERSION=${{env.JMETER_VERSION}}
JMETER_VERSION=${{env.JMETER_VERSION}}
- name: Load docker images into kind cluster
run: |
Expand Down
2 changes: 1 addition & 1 deletion docker/jmeter-base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM openjdk:11-jre-slim
LABEL maintainer="[email protected]"

ARG JMETER_VERSION=5.4.1
ARG JMETER_VERSION

ENV JMETER_HOME /opt/apache-jmeter-$JMETER_VERSION
ENV PATH $JMETER_HOME/bin:$PATH
Expand Down
6 changes: 2 additions & 4 deletions docker/jmeter-master/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
ARG VERSION="latest"
FROM hellofresh/kangal-jmeter:$VERSION

ARG JMETER_VERSION=5.4.1
ARG JMETER_VERSION
FROM hellofresh/kangal-jmeter:$JMETER_VERSION

ENV SSL_DISABLED false
ENV WORKER_SVC_NAME jmeter-worker
Expand Down
6 changes: 2 additions & 4 deletions docker/jmeter-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
ARG VERSION="latest"
FROM hellofresh/kangal-jmeter:$VERSION

ARG JMETER_VERSION=5.4.1
ARG JMETER_VERSION
FROM hellofresh/kangal-jmeter:$JMETER_VERSION

ENV SSL_DISABLED false

Expand Down

0 comments on commit 35525e9

Please sign in to comment.