Prepare for v0.17.3 release #668
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
on: [push] | |
name: build | |
jobs: | |
check: | |
name: dash-mpd-rs check/nightly | |
runs-on: ubuntu-latest | |
timeout-minutes: 100 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Install ffmpeg + protoc | |
run: | | |
sudo apt-get update | |
sudo apt-get install ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev protobuf-compiler cmake | |
- run: cargo check | |
- run: cargo hack check --feature-powerset --no-dev-deps | |
test: | |
name: dash-mpd-rs test/stable | |
runs-on: ubuntu-latest | |
timeout-minutes: 100 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Install ffmpeg + GPAC + mediainfo | |
run: | | |
sudo apt-get update | |
sudo apt-get install ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev gpac mediainfo | |
MP4Box -version | |
- name: Install mkvmerge | |
run: sudo apt install mkvtoolnix | |
- name: Install Bento4 mp4decrypt | |
run: | | |
wget -q -O /tmp/bento4.zip https://www.bok.net/Bento4/binaries/Bento4-SDK-1-6-0-641.x86_64-unknown-linux.zip | |
unzip /tmp/bento4.zip "Bento4-SDK-*/bin/mp4decrypt" -d /tmp | |
sudo mv /tmp/Bento4-SDK*/bin/mp4decrypt /usr/local/bin | |
- name: Install shaka-packager | |
run: | | |
wget -q -O /tmp/shaka-packager https://github.com/shaka-project/shaka-packager/releases/latest/download/packager-linux-x64 | |
mv /tmp/shaka-packager /usr/local/bin | |
chmod +x /usr/local/bin/shaka-packager | |
- name: Install xsltproc + protoc | |
run: sudo apt install xsltproc protobuf-compiler cmake | |
- run: RUST_LOG=info cargo test --jobs 1 --test muxing -- --show-output | |
- run: RUST_LOG=info cargo test --jobs 1 | |
- run: cargo test --jobs 1 --all-features | |
- run: cargo run --example serialize | |
- run: cargo run --example pprint_bbc_adaptive |