Skip to content

Commit

Permalink
GithubActions: Fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
aveenismail committed Aug 11, 2023
2 parents 3adb245 + 47b304f commit 87b0fe1
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/release_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,19 +148,10 @@ jobs:
git clone --branch $LIBYUBIHSM_TAG https://github.com/Yubico/yubihsm-shell.git
cd yubihsm-shell
if [ "${PLATFORM:0:6}" == "debian" ] || [ "$PLATFORM" == "ubuntu1804" ]; then
dpkg-buildpackage -b --no-sign
else
dpkg-buildpackage
fi
ls
dpkg -i ./libyubihsm*_amd64.deb
ls /usr/lib/x86_64-linux-gnu
mkdir build
cd build
cmake .. -DBUILD_ONLY_LIB=ON
make
- name: clone yubihsmrs
working-directory: yubihsm-setup
Expand All @@ -181,9 +172,9 @@ jobs:
export PATH=$PATH:$HOME/.cargo/bin
#YUBIHSM_LIB_DIR=$(dpkg -L libyubihsm1 | grep -e "libyubihsm.so.2$" | xargs dirname) cargo build --release
YUBIHSM_LIB_DIR=/usr/lib/x86_64-linux-gnu cargo build --release
YUBIHSM_LIB_DIR=$GITHUB_WORKSPACE/yubihsm-shell/build/lib cargo build --release
LD_LIBRARY_PATH=$GITHUB_WORKSPACE/yubihsm-shell/build/lib cargo deb --no-build
strip --strip-all target/release/yubihsm-setup
cargo deb --no-build
cp target/debian/*.deb $OUTPUT/
./target/release/yubihsm-setup version
Expand Down

0 comments on commit 87b0fe1

Please sign in to comment.