-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (64 loc) · 2.11 KB
/
demo_check.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
name: Test SPS Demos
on:
workflow_dispatch:
schedule:
- cron: '0 */8 * * *'
jobs:
test-cw-demo:
env:
PIXELSTREAMING_URL: '${{ secrets.CW_DEMO_URL }}'
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v4
- name: Setup playwright
run: |
npm install
npx playwright install --with-deps
npx playwright install chrome
- name: Test if we can stream
id: playwright
run: npx playwright test
- name: Post Discord message
if: failure()
run: |
curl -i -H "Accept: application/json" -H "Content-Type:application/json" -X POST --data "{\"content\": \"@here Could not stream ${{ secrets.CW_DEMO_URL }} \"}" ${{ secrets.DISCORD_WEBHOOK }}
- name: Get short sha
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: Results-${{ steps.vars.outputs.sha_short }}-cw
path: playwright-report
test-aws-demo:
env:
PIXELSTREAMING_URL: '${{ secrets.AWS_DEMO_URL }}'
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v4
- name: Setup playwright
run: |
npm install
npx playwright install --with-deps
npx playwright install chrome
- name: Test if we can stream
id: playwright
run: npx playwright test
- name: Post Discord message
if: failure()
run: |
curl -i -H "Accept: application/json" -H "Content-Type:application/json" -X POST --data "{\"content\": \"@here Could not stream ${{ secrets.AWS_DEMO_URL }} \"}" ${{ secrets.DISCORD_WEBHOOK }}
- name: Get short sha
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: Results-${{ steps.vars.outputs.sha_short }}-aws
path: playwright-report