-
Notifications
You must be signed in to change notification settings - Fork 0
129 lines (116 loc) · 4.52 KB
/
run_psu_load.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Run psu load test
on:
workflow_dispatch:
inputs:
environment:
description: 'Environment to run tests against. Allowed values are dev or ref'
required: true
default: 'ref'
arrivalRate:
description: 'The number of new users to add every second'
required: true
default: '275'
duration:
description: 'The duration of the main test'
required: true
default: '900'
rampUpDuration:
description: 'The duration to ramp up to the arrival rate'
required: true
default: '900'
maxVusers:
description: 'Maximum number of vusers to create'
required: true
default: '500'
jobs:
run_artillery:
name: Run Artillery
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Show input params
shell: bash
run: |
echo "## environment : ${{ github.event.inputs.environment }}" >> "$GITHUB_STEP_SUMMARY"
echo "## arrivalRate : ${{ github.event.inputs.arrivalRate }}" >> "$GITHUB_STEP_SUMMARY"
echo "## duration : ${{ github.event.inputs.duration }}" >> "$GITHUB_STEP_SUMMARY"
echo "## rampUpDuration : ${{ github.event.inputs.rampUpDuration }}" >> "$GITHUB_STEP_SUMMARY"
echo "## maxVusers : ${{ github.event.inputs.maxVusers }}" >> "$GITHUB_STEP_SUMMARY"
- name: Checkout repo
uses: actions/checkout@v4
with:
ref: ${{ env.BRANCH_NAME }}
- name: Install asdf
uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
with:
asdf_branch: v0.14.0
- name: Cache asdf
uses: actions/cache@v4
with:
path: |
~/.asdf
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}
restore-keys: |
${{ runner.os }}-asdf-
- name: Install asdf dependencies in .tool-versions
uses: asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
with:
asdf_branch: v0.14.0
env:
PYTHON_CONFIGURE_OPTS: --enable-shared
- name: Install Dependencies
run: make install
- name: Assume dev artillery runner role
if: github.event.inputs.environment == 'dev'
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: eu-west-2
role-to-assume: ${{ secrets.DEV_ARTILLERY_RUNNER_ROLE }}
role-session-name: github-actions-artillery
- name: Assume ref artillery runner role
if: github.event.inputs.environment == 'ref'
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: eu-west-2
role-to-assume: ${{ secrets.REF_ARTILLERY_RUNNER_ROLE }}
role-session-name: github-actions-artillery
- name: Run load tests
shell: bash
env:
environment: ${{ github.event.inputs.environment }}
arrivalRate: ${{ github.event.inputs.arrivalRate }}
duration: ${{ github.event.inputs.duration }}
rampUpDuration: ${{ github.event.inputs.rampUpDuration }}
maxVusers: ${{ github.event.inputs.maxVusers }}
run: |
./scripts/run_psu_load_test.sh
- uses: actions/upload-artifact@v4
if: always()
name: Upload test_report
with:
name: test_report
path: |
psu_load_test.json
psu_load_test.json.html
- name: Upload artifacts to S3, if we are using REF environment
if: github.event.inputs.environment == 'ref'
continue-on-error: true
env:
AWS_REGION: eu-west-2
BUCKET_NAME: artilleryio-test-data-${{ secrets.AWS_ACCOUNT_ID }}
RUN_ID: ${{ github.run_id }}
run: |
aws s3 cp psu_load_test.json s3://$BUCKET_NAME/reports/$RUN_ID/psu_load_test.json --acl public-read
aws s3 cp psu_load_test.json.html s3://$BUCKET_NAME/reports/$RUN_ID/psu_load_test.json.html --acl public-read
- name: Output link to HTML report
if: github.event.inputs.environment == 'ref'
env:
AWS_REGION: eu-west-2
BUCKET_NAME: artilleryio-test-data-${{ secrets.AWS_ACCOUNT_ID }}
RUN_ID: ${{ github.run_id }}
run: |
REPORT_URL="https://$BUCKET_NAME.s3.${AWS_REGION}.amazonaws.com/reports/$RUN_ID/psu_load_test.json.html"
echo "Test report is hosted at: $REPORT_URL" >> "$GITHUB_STEP_SUMMARY"
echo "::set-output name=report_url::$REPORT_URL"