Run Gitea workflows on Ubuntu only
Some checks failed
Native code generation / deterministic (push) Successful in 1m31s
Imaging and meshing gate / native (push) Failing after 17s
JPEG 2000 feature / linux (push) Failing after 1m0s
Skia feature / linux (push) Failing after 1m37s

This commit is contained in:
2026-08-09 07:07:13 +00:00
parent b2a060d3c6
commit 5bc22bdd83
5 changed files with 3 additions and 66 deletions

View File

@@ -23,31 +23,3 @@ jobs:
run: |
cargo test -p libremetaverse-imaging --features jpeg2000
cargo check -p libremetaverse --features jpeg2000
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install OpenJPEG
run: brew install openjpeg pkg-config
- name: Build and test optional feature
run: |
cargo test -p libremetaverse-imaging --features jpeg2000
cargo check -p libremetaverse --features jpeg2000
windows:
runs-on: windows-latest
env:
VCPKGRS_DYNAMIC: "1"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install OpenJPEG
shell: pwsh
run: vcpkg install openjpeg:x64-windows
- name: Build and test optional feature
shell: pwsh
run: |
cargo test -p libremetaverse-imaging --features jpeg2000
cargo check -p libremetaverse --features jpeg2000