Skip to content

Commit

Permalink
run the bzip2-rs test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Dec 11, 2024
1 parent 70b0227 commit 50ed5f8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -394,3 +394,25 @@ jobs:
abidw $LIBBZ2_PATH > /tmp/$LIBBZ2_FILENAME.abi
abidw /tmp/cargo-cbuild-libbzip2-rs/usr/local/lib/x86_64-linux-gnu/libbz2_rs.so > /tmp/liblibz_rs_sys.so.abi
abidiff --no-unreferenced-symbols --ignore-soname /tmp/$LIBBZ2_FILENAME.abi /tmp/liblibz_rs_sys.so.abi
run-bzip2-rs-test-suite:
name: run bzip2-rs test suite
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
features:
- ''
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
persist-credentials: false
- name: run
run: |
cd ..
git clone https://github.com/trifectatechfoundation/bzip2-rs.git
cd bzip2-rs
sed '/^\[dependencies\.libbz2-rs-sys\]/,/^$/ s/^version = .*/path = "..\/libbzip2-rs\/libbz2-rs-sys"/' Cargo.toml
cargo test --no-default-features --features="libbz2-rs-sys"

0 comments on commit 50ed5f8

Please sign in to comment.