-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup workflow to test CLI on PR (#620)
- Loading branch information
1 parent
3c7e9de
commit ba42591
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
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 |