-
Notifications
You must be signed in to change notification settings - Fork 23
42 lines (39 loc) · 1.39 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
on: [push]
name: build
jobs:
check:
name: dash-mpd-rs check/nightly
runs-on: ubuntu-latest
timeout-minutes: 100
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- uses: taiki-e/install-action@cargo-hack
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev
- 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@v3
- uses: dtolnay/rust-toolchain@stable
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev gpac
- 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-640.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
- run: cargo test
- run: cargo test --all-features
- run: cargo run --example serialize
- run: cargo run --example pprint_bbc_adaptive