From 47945786886cebd8fa06dbf92006f11c4a856365 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 4 Dec 2020 09:12:34 -0500 Subject: [PATCH] actions take 57 --- .github/workflows/build.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f592a9f6..690700a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,7 +94,6 @@ jobs: echo "python=$python" >> $GITHUB_ENV echo "pip=$pip" >> $GITHUB_ENV echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV - # done - name: Build GAM run: | @@ -103,32 +102,27 @@ jobs: source travis/${GAMOS}-install.sh echo "gampath=$gampath" >> $GITHUB_ENV echo "gam=$gam" >> $GITHUB_ENV - # done - name: Basic Tests - all jobs run: | set +e cd src $python -m unittest discover --start-directory ./ --pattern "*_test.py" --buffer - touch $gampath/nobrowser.txt + touch "${gampath}/nobrowser.txt" $gam version extended - $gam version | grep runner # runner should be part of the path (not /tmp or such) - # done + $gam version | grep runner - name: Basic Tests - build jobs only run: | cd src - # Check Python version vline=$($gam version | grep "Python ") python_line=($vline) this_python=${python_line[1]} $python tools/a_atleast_b.py "${this_python}" "${MIN_PYTHON_VERSION}" - # Check OpenSSL version vline=$($gam version extended | grep "OpenSSL ") openssl_line=($vline) this_openssl="${openssl_line[1]}" $python tools/a_atleast_b.py "${this_openssl}" "${MIN_OPENSSL_VERSION}" - # done - name: Live API tests - build jobs only run: |