From 5e793f171f61bff638d0e9a0620ba984211f5eb4 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 11 Feb 2021 19:32:20 +0000 Subject: [PATCH] Install swig and pyscard for MacOS --- .github/actions/macos-before-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/macos-before-install.sh b/.github/actions/macos-before-install.sh index 0dabde6a..6100679a 100755 --- a/.github/actions/macos-before-install.sh +++ b/.github/actions/macos-before-install.sh @@ -63,6 +63,9 @@ SSLRESULT=$? PYVER=$($python -V) PYRESULT=$? +homebrew install swig +$pip install pyscard + #wget --quiet https://www.python.org/ftp/python/$BUILD_PYTHON_VERSION/python-$BUILD_PYTHON_VERSION-macosx10.9.pkg #if [ $SSLRESULT -ne 0 ] || [[ "$SSLVER" != "OpenSSL $BUILD_OPENSSL_VERSION "* ]] || [ $PYRESULT -ne 0 ] || [[ "$PYVER" != "Python $BUILD_PYTHON_VERSION"* ]]; then