Skip to content

Commit

Permalink
chore: remove report from CICD examples
Browse files Browse the repository at this point in the history
  • Loading branch information
hassy committed Dec 10, 2024
1 parent ec8405f commit 9c51c5d
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 12 deletions.
3 changes: 0 additions & 3 deletions examples/cicd/aws-codebuild/buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ phases:
build:
commands:
- artillery run --output reports/report.json tests/performance/socket-io.yml
post_build:
commands:
- artillery report --output reports/report.html reports/report.json

artifacts:
files:
Expand Down
3 changes: 0 additions & 3 deletions examples/cicd/azure-devops/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,5 @@ steps:
- script: artillery run --output reports/report.json tests/performance/socket-io.yml
displayName: 'Execute load tests'

- script: artillery report --output reports/report.html reports/report.json
displayName: 'Generate HTML report'

- publish: $(System.DefaultWorkingDirectory)/reports
artifact: artillery-test-report
4 changes: 0 additions & 4 deletions examples/cicd/circleci/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ jobs:
name: Execute load tests
command: /home/node/artillery/bin/artillery run --output reports/report.json tests/performance/socket-io.yml

- run:
name: Generate HTML report
command: /home/node/artillery/bin/artillery report --output reports/report.html reports/report.json

- store_artifacts:
path: reports

Expand Down
1 change: 0 additions & 1 deletion examples/cicd/gitlab-ci-cd/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ artillery:
script: |
mkdir reports
/home/node/artillery/bin/artillery run --output reports/report.json tests/performance/socket-io.yml
/home/node/artillery/bin/artillery report --output reports/report.html reports/report.json
artifacts:
paths:
- reports
1 change: 0 additions & 1 deletion examples/cicd/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ pipeline {
steps {
sh 'mkdir reports'
sh '/home/node/artillery/bin/artillery run --output reports/report.json tests/performance/socket-io.yml'
sh '/home/node/artillery/bin/artillery report --output reports/report.html reports/report.json'
}
}
}
Expand Down

0 comments on commit 9c51c5d

Please sign in to comment.