Test SPS Demos #354
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |