gatling-sample-framework/aws/buildspec.yml

26 lines
613 B
YAML
Raw Normal View History

2024-10-25 22:12:59 +00:00
version: 0.2
env:
shell: powershell.exe
secrets-manager:
test_user: "aws-secrets:test_user"
test_pswd: "aws:test_pswd"
git-credential-helper: no
proxy:
upload-artifacts: no
logs: yes
phases:
build:
on-failure: ABORT
commands:
- $env:BASE_URL=${BASE_URL}
- .\aws-run.ps1 -test "${TEST_NAME}" -user ${test_user} -pswd ${test_pswd} -count ${USER_COUNT} -ramp_in_minutes ${RAMP} -duration_in_minutes ${DURATION}
artifacts:
files:
- 'target/gatling/**/*'
name: gatling-test-report-$(date +%Y-%m-%d)
discard-paths: no
enable-symlinks: yes