Skip to content

Commit

Permalink
Install and verify ldd paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Feb 15, 2024
1 parent d657800 commit 2708801
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/temp-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,20 @@ jobs:
echo "Updated rust version: $(rustc --version)"
printf '*%.0s' {1..60} && printf "\n"
- name: Build and test
- name: Install binary prerequisites
run: |
sudo apt-get install libssl-dev
sudo apt-get install libssl-dev python3.9 libpython3.9-dev
export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH
- name: Build and test
run: |
cargo build --release
cargo test
shell: bash

- name: Verify Library Paths
run: ldd ./target/release/${{ matrix.platform.bin }}

- name: Copy Artifacts
run: |
mkdir -p ${{ needs.release.outputs.pkg-name }}
Expand Down

0 comments on commit 2708801

Please sign in to comment.