build project in CI
Some checks failed
Rust / build (push) Failing after 26s

This commit is contained in:
Vinzenz Schroeter 2025-02-16 14:09:11 +01:00
parent f4bdff0e11
commit 2a94287f35

View file

@ -25,21 +25,15 @@ jobs:
- name: Install rust toolchain - name: Install rust toolchain
run: sudo apt-get install -qy cargo rust-clippy run: sudo apt-get install -qy cargo rust-clippy
- name: install lzma - name: install lzma
run: sudo apt-get update && sudo apt-get install -y liblzma-dev run: sudo apt-get install -qy liblzma-dev
- name: install dotnet
run: dotnet-sdk-8.0 ca-certificates libc6 libgcc-s1 libicu74 liblttng-ust1 libssl3 libstdc++6 libunwind8 zlib1g
- name: Run Clippy - name: generate bindings
run: cargo clippy --all-targets --all-features run: ./generate-binding.sh
- name: build default features
run: cargo build --all --verbose
- name: build default features -- examples
run: cargo build --examples --verbose
- name: test default features
run: cargo test --all --verbose
- name: build all features - name: check that generated files did not change
run: cargo build --all-features --verbose run: output=$(git status --porcelain) && [ -z "$output" ]
- name: build all features -- examples
run: cargo build --all-features --examples --verbose - name: build solution
- name: test all features run: dotnet publish
run: cargo test --all --all-features --verbose