Skip to content

Commit

Permalink
chore(ci): install liblzma-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
oll3 committed Jan 4, 2025
1 parent 6756646 commit 89c3143
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/bita-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- name: install extra packages
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get install -y liblzma-dev
fi
- name: build
run: cargo build
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/bitar-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- name: install extra packages
run: sudo apt-get install -y liblzma-dev

- name: build
run: cargo build -p bitar --verbose
Expand Down

0 comments on commit 89c3143

Please sign in to comment.