Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Add threadgroup plugin #1

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ jobs:
name: JMeter Test Execution
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create reports directory
run: mkdir reports

- name: Run JMeter Tests
uses: ./
with:
test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx
test-plan-path: ./TestPlans/S04_StressSmokeTest/smoke_stress_test.jmx
args: "-e -o ./reports/html/"

- name: Upload Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jmeter-results
path: result.jtl
if-no-files-found: error

- name: Upload HTML Reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jmeter-reports
path: reports
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV JMETER_BIN "${JMETER_HOME}/bin"
ENV PATH "$PATH:$JMETER_BIN"
ENV JMETER_CMD_RUNNER_VERSION "2.3"
ENV JMETER_PLUGIN_MANAGER_VERSION "1.9"
ENV JMETER_PLUGIN_INSTALL_LIST "jpgc-udp,jpgc-graphs-basic"
ENV JMETER_PLUGIN_INSTALL_LIST "jpgc-udp,jpgc-graphs-basic,jpgc-casutg"

COPY entrypoint.sh /entrypoint.sh
COPY jmeter-plugin-install.sh /jmeter-plugin-install.sh
Expand All @@ -29,4 +29,4 @@ RUN apk --no-cache add curl ca-certificates openjdk17-jre && \
# Downloading CMD Runner
RUN /jmeter-plugin-install.sh

ENTRYPOINT [ "/entrypoint.sh" ]
ENTRYPOINT [ "/entrypoint.sh" ]
Loading
Loading