-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8b8f9a
commit f49cd16
Showing
2 changed files
with
72 additions
and
27 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
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,71 @@ | ||
name: build and test | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: 🛠 Install system dependencies | ||
run: | | ||
set -e | ||
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections | ||
sudo apt-get update -y -qq | ||
sudo apt-get install -y mesa-vulkan-drivers libegl1-mesa-dev libgl1-mesa-dri libxcb-xfixes0-dev ffmpeg libavcodec-dev libavformat-dev libavfilter-dev libavdevice-dev ttf-mscorefonts-installer libopus-dev | ||
fc-cache -f | ||
- name: 🔧 Install the rust toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: 🔬 Install nextest | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-nextest | ||
|
||
- name: 📥 Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: 🧩 Git submodules update | ||
run: | | ||
cat > .gitmodules << EOF | ||
[submodule "snapshot_tests/snapshots"] | ||
path = snapshot_tests/snapshots | ||
url = https://github.com/membraneframework-labs/video_compositor_snapshot_tests.git | ||
EOF | ||
git submodule update --init | ||
- name: 📁 Rust cache | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: 🪢 Generate Chromium Embedded Framework bindings | ||
run: cargo build --package compositor_chromium | ||
|
||
- name: 🛠 Cargo build | ||
run: | | ||
cargo build --features decklink | ||
cargo build --no-default-features | ||
- name: 🧪 Run tests | ||
run: | | ||
cargo nextest run --workspace --profile ci | ||
- name: 📦 Upload failed snapshot test artifacts | ||
if: failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: failed_snapshot_tests | ||
path: failed_snapshot_tests | ||
retention-days: 2 | ||
|
||
- name: 📚 Run doctests | ||
run: cargo test --workspace --doc |