From 0934b70414466c6c1b391cab48aeb1e225c064a4 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 11 Feb 2021 16:49:00 +0000 Subject: [PATCH] add required Linux packages to install yubikey-manager --- .github/actions/linux-before-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/linux-before-install.sh b/.github/actions/linux-before-install.sh index 81e95a1e..6eed609c 100755 --- a/.github/actions/linux-before-install.sh +++ b/.github/actions/linux-before-install.sh @@ -1,3 +1,6 @@ +echo "RUNNING: apt update..." +sudo apt-get -qq --yes update > /dev/null +sudo apt-get -qq --yes install swig libpcslite-dev if [[ "$TRAVIS_JOB_NAME" == *"Testing" ]]; then export python="python" export pip="pip" @@ -32,8 +35,6 @@ else rm -rf python mkdir ssl mkdir python - echo "RUNNING: apt update..." - sudo apt-get -qq --yes update > /dev/null echo "RUNNING: apt upgrade..." sudo apt-mark hold openssh-server sudo apt-get --yes upgrade