Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing yubihsm installation #3

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,18 @@ jobs:
sudo apt install -y libusb-1.0-0 libpcsclite1 libusb-1.0-0

# download the yubihsm-shell package, it is all we need, and install all debs
wget https://developers.yubico.com/yubihsm-shell/Releases/yubihsm-shell-2.4.0-ubuntu2004-amd64.tar.gz
tar xf yubihsm-shell-2.4.0-ubuntu2004-amd64.tar.gz
wget https://developers.yubico.com/yubihsm-shell/Releases/yubihsm-shell-2.4.1-ubuntu2204-amd64.tar.gz
tar xf yubihsm-shell-2.4.1-ubuntu2204-amd64.tar.gz
cd yubihsm-shell
sudo apt install -y ./libyubihsm-usb1_2.4.0_amd64.deb
sudo apt install -y ./libyubihsm-http1_2.4.0_amd64.deb
sudo apt install -y ./libyubihsm1_2.4.0_amd64.deb
sudo apt install -y ./libyubihsm-dev_2.4.0_amd64.deb
sudo apt install -y ./libykhsmauth1_2.4.0_amd64.deb
sudo apt install -y ./yubihsm-pkcs11_2.4.0_amd64.deb
sudo apt install -y ./yubihsm-auth_2.4.0_amd64.deb
sudo apt install -y ./yubihsm-shell_2.4.0_amd64.deb
sudo apt install -y ./yubihsm-wrap_2.4.0_amd64.deb
sudo apt-get install -y -f ./libyubihsm-usb1_2.4.1_amd64.deb
sudo apt-get install -y -f ./libyubihsm-http1_2.4.1_amd64.deb
sudo apt-get install -y -f ./libyubihsm1_2.4.1_amd64.deb
sudo apt-get install -y -f ./libyubihsm-dev_2.4.1_amd64.deb
sudo apt-get install -y -f ./libykhsmauth1_2.4.1_amd64.deb
sudo apt-get install -y -f ./yubihsm-pkcs11_2.4.1_amd64.deb
sudo apt-get install -y -f ./yubihsm-auth_2.4.1_amd64.deb
sudo apt-get install -y -f ./yubihsm-shell_2.4.1_amd64.deb
sudo apt-get install -y -f ./yubihsm-wrap_2.4.1_amd64.deb

cd
- name: Prepare HSM and PKCS11 configuration files
Expand Down
Loading