Skip to content

Commit d0e68b4

Browse files
committed
Separate daily test metrics
1 parent 951224c commit d0e68b4

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

.github/workflows/daily-test.yml

+19-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
ROLE_TO_ASSUME: ${{ secrets.ROLE_TO_ASSUME }}
1919
METRIC_NAME: ${{ secrets.METRIC_NAME }}
2020
METRIC_NAMESPACE: ${{ secrets.METRIC_NAMESPACE }}
21-
21+
REGION: us-east-1
2222

2323
permissions:
2424
id-token: write
@@ -32,7 +32,7 @@ jobs:
3232
matrix:
3333
# Latest 2 Android versions. TODO: Upgrade to Appium 2 for OS 14 and above.
3434
os_list: ["12", "13"]
35-
demo_download_url_list: ["$DEMO_APP_DOWNLOAD_LINK", "$DEMO_APP_DOWNLOAD_LINK_NO_VIDEO_CODECS"]
35+
demo_flavor_list: ["default", "no-video-codecs"]
3636
outputs:
3737
job-status: ${{ job.status }}
3838

@@ -46,7 +46,14 @@ jobs:
4646

4747
- name: Get latest prod demo app
4848
run: |
49-
wget -O amazon-chime-sdk-app.apk ${{ matrix.demo_download_url_list }}
49+
if [ "${{ matrix.demo_flavor_list }}" = "default" ]; then
50+
wget -O amazon-chime-sdk-app.apk $DEMO_APP_DOWNLOAD_LINK;
51+
elif [ "${{ matrix.demo_flavor_list }}" = "no-video-codecs" ]; then
52+
wget -O amazon-chime-sdk-app.apk $DEMO_APP_DOWNLOAD_LINK_NO_VIDEO_CODECS;
53+
else
54+
echo "Error: Unsupported demo app flavor: ${{ matrix.demo_flavor_list }}";
55+
exit 1;
56+
fi
5057
5158
- name: Setup Node.js - 15.x
5259
uses: actions/setup-node@v4
@@ -78,25 +85,29 @@ jobs:
7885
7986
- name: Configure AWS Credentials
8087
uses: aws-actions/configure-aws-credentials@v2
88+
if: always()
8189
with:
8290
role-to-assume: ${{ secrets.ROLE_TO_ASSUME }}
83-
aws-region: us-east-1
91+
aws-region: ${{ env.REGION }}
8492

8593
- name: Setup Node.js - 18.x
8694
uses: actions/setup-node@v4
95+
if: always()
8796
with:
8897
node-version: 18.x
8998

9099
- name: Install Dependencies
100+
if: always()
91101
run: |
92102
# Required to bydpass issue with canvas dependency: https://github.com/Automattic/node-canvas/issues/1862
93103
sudo apt-get install -y libcairo2-dev libjpeg-dev libpango1.0-dev libgif-dev build-essential g++
94104
95105
- name: Send Metric to CloudWatch
106+
if: always()
96107
run: |
97108
node -e "
98109
const { CloudWatchClient, PutMetricDataCommand } = require('@aws-sdk/client-cloudwatch');
99-
const client = new CloudWatchClient({ region: 'us-east-1' });
110+
const client = new CloudWatchClient({ region: process.env.REGION });
100111
101112
const value = '${{ job.status }}' === 'failure' ? 0 : 1;
102113
@@ -105,8 +116,9 @@ jobs:
105116
MetricData: [{
106117
MetricName: process.env.METRIC_NAME,
107118
Dimensions: [
108-
{ Name: 'Workflow', Value: 'DailyTest' },
109-
{ Name: 'Platform', Value: 'Android' }
119+
{ Name: 'Platform', Value: 'Android' },
120+
{ Name: 'OS', Value: ${{ matrix.os_list }} },
121+
{ Name: 'Flavor', Value: ${{ matrix.flavor }} }
110122
],
111123
Value: value,
112124
}]

0 commit comments

Comments
 (0)