From 87db64897d3dcdce15dc135837cf445ed4200f69 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Thu, 16 Nov 2023 08:01:31 -0800 Subject: [PATCH] Ignore github/Google time offset errors --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c48819fc..3b4b1eb1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -577,7 +577,7 @@ jobs: id: basictests run: | $PYTHON -m unittest discover --start-directory ./ --pattern "*_test.py" --buffer || if [ $? != 5 ]; then exit $?; fi # exit 5 is no tests - $gam version extended + $gam version extended nooffseterror export GAMVERSION=$($gam version simple) echo "GAM Version ${GAMVERSION}" echo "GAMVERSION=${GAMVERSION}" >> $GITHUB_ENV @@ -611,7 +611,7 @@ jobs: - name: Basic Tests build jobs only if: matrix.goal != 'test' && steps.cache-python-ssl.outputs.cache-hit != 'true' run: | - export voutput=$($gam version extended) + export voutput=$($gam version extended nooffseterror) export python_line=$(echo -e "${voutput}" | grep "Python ") export python_arr=($python_line) export this_python=${python_arr[1]}