Feat whipinto rtsp #292
Workflow file for this run
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: WHIP Endpoint Conformance Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install | |
run: bun install | |
- name: Build WebUI | |
run: bun run build | |
- name: Build | |
run: cargo build --release --verbose | |
- name: Checkout tools repo | |
uses: actions/checkout@v4 | |
with: | |
repository: wish-wg/resources | |
path: wish-tools | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Run tests | |
run: | | |
pushd wish-tools/conformance-tools/whip/server/ | |
wget https://gist.github.com/a-wing/f7b074770b558e114911e339bb6a3e84/raw/9529d71fb8abe16fe4900a0232c77b2621c8d318/multirun.sh | |
chmod +x multirun.sh | |
npm install | |
export WHIP_ENDPOINT=http://localhost:7777/whip/777 | |
./multirun.sh '../../../../target/release/live777' 'npm run test' 'sleep 10' |