Skip to content

Commit

Permalink
fix: Properly adding RESULTS_DIR as env var
Browse files Browse the repository at this point in the history
  • Loading branch information
cberg-aot committed Aug 24, 2024
1 parent 35d137c commit bac3bcc
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions .github/workflows/loadtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:

- uses: rbhadti94/[email protected]
with:
testFilePath: loadtests/dops
outputReportsFolder: loadtests/results
testFilePath: loadtests/dops/orbc_load_test_plan_dops.jmx
outputReportsFolder: results_dops
args: |
--loglevel INFO
--jmeterlogconf=log.conf
Expand All @@ -51,12 +51,12 @@ jobs:
-JFRONTEND_API_URL=${{inputs.frontend_api_url}}
-JDOPS_API_URL=${{inputs.dops_api_url}}
-JVEHICLES_API_URL=${{inputs.vehicles_api_url}}
-JRESULTS_DIR=loadtests/results
-JRESULTS_DIR=results_dops
- uses: rbhadti94/[email protected]
with:
testFilePath: loadtests/vehicles
outputReportsFolder: loadtests/results
testFilePath: loadtests/vehicles/orbc_load_test_plan_vehicles.jmx
outputReportsFolder: results_vehicles
args: |
--loglevel INFO
--jmeterlogconf=log.conf
Expand All @@ -65,12 +65,12 @@ jobs:
-JFRONTEND_API_URL=${{inputs.frontend_api_url}}
-JDOPS_API_URL=${{inputs.dops_api_url}}
-JVEHICLES_API_URL=${{inputs.vehicles_api_url}}
-JRESULTS_DIR=loadtests/results
-JRESULTS_DIR=results_vehicles
- uses: rbhadti94/[email protected]
with:
testFilePath: loadtests/frontend
outputReportsFolder: loadtests/results
testFilePath: loadtests/frontend/orbc_load_test_plan_frontend.jmx
outputReportsFolder: results_frontend
args: |
--loglevel INFO
--jmeterlogconf=log.conf
Expand All @@ -79,13 +79,19 @@ jobs:
-JFRONTEND_API_URL=${{inputs.frontend_api_url}}
-JDOPS_API_URL=${{inputs.dops_api_url}}
-JVEHICLES_API_URL=${{inputs.vehicles_api_url}}
-JRESULTS_DIR=loadtests/results
- run: |
ls -al loadtests/results
-JRESULTS_DIR=results_frontend
- uses: actions/[email protected]
with:
name: jmeter-test-results
path: loadtests/results
name: jmeter-test-results-dops
path: results_dops

- uses: actions/[email protected]
with:
name: jmeter-test-results-vehicles
path: results_vehicles

- uses: actions/[email protected]
with:
name: jmeter-test-results-frontend
path: results_frontend

0 comments on commit bac3bcc

Please sign in to comment.