Files
MetaCrate/.gitea/workflows/skia.yml
Chili Palmer 2274dd9a91
Some checks failed
Native code generation / deterministic (push) Failing after 10m31s
JPEG 2000 feature / linux (push) Has been cancelled
Skia feature / linux (push) Has been cancelled
Imaging and meshing gate / native (push) Has been cancelled
Fix Linux Gitea workflow gates
2026-08-09 11:51:15 +00:00

24 lines
723 B
YAML

name: Skia feature
on:
push:
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
env:
FORCE_SKIA_BINARIES_DOWNLOAD: "1"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install native link prerequisites
run: |
sudo apt-get update
sudo apt-get install --yes build-essential clang curl ninja-build pkg-config python3 libfontconfig1-dev libfreetype6-dev
- name: Test default and Skia feature builds
run: |
cargo test -p libremetaverse-imaging-skia --no-default-features
cargo test -p libremetaverse-imaging-skia --features skia
cargo package -p libremetaverse-imaging-skia --list