mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 16:40:12 +00:00
Cargo 1.56 is needed for cargo-c but 1.55 is in U18 runner ver 20211017.0 thus update as a workaround. Failed run: https://github.com/MartinPulec/UltraGrid/actions/runs/1412342915
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/bin/sh -eux
|
|
#
|
|
# Builds rav1e but doesn't install it
|
|
|
|
rustup update
|
|
cargo install cargo-c
|
|
git clone --depth 1 https://github.com/xiph/rav1e.git
|
|
cd rav1e
|
|
cargo build --release
|
|
cargo cinstall --release --destdir=install
|
|
|