Skip to content

Commit

Permalink
Setup workflow to test CLI on PR (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
FritzHeiden authored Dec 6, 2022
1 parent 3c7e9de commit ba42591
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/run-cli-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: run-cli-test

on:
push:
branches:
- 'development'
pull_request:
branches:
- 'development'

jobs:
run-cli-test:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: curl, xdebug, xml
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
- name: Checkout out repository
uses: actions/checkout@v3
- name: Run CLI WAVE
run: |
php ./Utils/Process_cli.php -H -i -w https://dash.akamaized.net/WAVE/vectors/avc_sets/12.5_25_50/t1/2022-01-17/stream.mpd
- name: Run CLI DASH-IF
run: |
php ./Utils/Process_cli.php -H -i -d https://dash.akamaized.net/dash264/TestCases/1a/netflix/exMPD_BIP_TC1.mpd

0 comments on commit ba42591

Please sign in to comment.